Implemented {Document,Element}.getElementsByTagNameNS

This commit is contained in:
Bruno de Oliveira Abinader 2014-02-27 13:18:03 -04:00
parent d22dbb53ca
commit e1499b610e
6 changed files with 26 additions and 6 deletions

View file

@ -51,7 +51,6 @@ interface Element : Node {
boolean hasAttributeNS(DOMString? namespace, DOMString localName);
HTMLCollection getElementsByTagName(DOMString localName);
[Throws]
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
HTMLCollection getElementsByClassName(DOMString classNames);
};