Fix for bug 153757 (hasAttribute on a HTML label crashes). r=caillon, sr=jst.

This commit is contained in:
peterv%netscape.com 2002-06-24 11:07:07 +00:00
Родитель a527d91fe6
Коммит f10f1eaa93
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -153,7 +153,7 @@ public:
return nsGenericHTMLContainerFormElement::GetElementsByTagNameNS(aNamespaceURI, aLocalName, aReturn);
}
NS_IMETHOD HasAttribute(const nsAString& aName, PRBool* aReturn) {
return HasAttribute(aName, aReturn);
return nsGenericHTMLContainerFormElement::HasAttribute(aName, aReturn);
}
NS_IMETHOD HasAttributeNS(const nsAString& aNamespaceURI,
const nsAString& aLocalName,