Correct silly error in fix for bug 180709 (Update Mozilla to the DOM Level 2 HTML PR). r=sicking.
This commit is contained in:
Родитель
10546cbe77
Коммит
26be2f6538
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче