Correct silly error in fix for bug 180709 (Update Mozilla to the DOM Level 2 HTML PR). r=sicking.

This commit is contained in:
peterv%netscape.com 2002-12-17 19:35:03 +00:00
Родитель 10546cbe77
Коммит 26be2f6538
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -606,8 +606,9 @@ NS_IMPL_STRING_ATTR(nsHTMLInputElement, UseMap, usemap)
NS_IMETHODIMP
nsHTMLInputElement::GetSize(PRUint32* aValue)
{
*aValue = 0;
nsHTMLValue value;
*aValue = -1;
if (NS_CONTENT_ATTR_HAS_VALUE ==
GetHTMLAttribute(nsHTMLAtoms::size, value)) {
if (value.GetUnit() == eHTMLUnit_Integer) {