Bug 1283620 - Add a namespaced overload of GetParsedAttr. r=mrbkap

This commit is contained in:
Bobby Holley 2016-06-30 13:36:24 -07:00
Родитель 906815cc56
Коммит ae4b3ffee8
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -957,6 +957,11 @@ public:
return mAttrsAndChildren.GetAttr(aAttr);
}
const nsAttrValue* GetParsedAttr(nsIAtom* aAttr, int32_t aNameSpaceID) const
{
return mAttrsAndChildren.GetAttr(aAttr, aNameSpaceID);
}
/**
* Returns the attribute map, if there is one.
*