Implement Element.getAttributeNames

This commit is contained in:
Anthony Ramine 2015-12-24 10:00:40 +01:00
parent 329a5b0c95
commit b8ae5897f1
7 changed files with 15 additions and 9 deletions

View file

@ -34,6 +34,8 @@ interface Element : Node {
[SameObject]
readonly attribute NamedNodeMap attributes;
[Pure]
sequence<DOMString> getAttributeNames();
[Pure]
DOMString? getAttribute(DOMString name);
[Pure]
DOMString? getAttributeNS(DOMString? namespace, DOMString localName);