mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 14:30:43 +00:00
Bug 195350: Fix regression from earlier patch in same bug: make html-attributes be case-insensitive again.
r=caillon sr=peterv
This commit is contained in:
parent
afeb66c1e6
commit
8b2a7340b2
@ -4439,6 +4439,9 @@ nsGenericHTMLElement::InternalGetExistingAttrNameFromQName(const nsAString& aStr
|
||||
}
|
||||
|
||||
NS_ConvertUTF16toUTF8 utf8name(aStr);
|
||||
if (mNodeInfo->NamespaceEquals(kNameSpaceID_None)) {
|
||||
ToLowerCase(utf8name);
|
||||
}
|
||||
|
||||
PRInt32 i, count = 0;
|
||||
mAttributes->GetAttributeCount(count);
|
||||
|
Loading…
x
Reference in New Issue
Block a user