Implementing getAttributeNode() and similar methods.

This commit is contained in:
KALPESH KRISHNA 2015-10-19 00:05:49 +05:30
parent b847e4dd77
commit 3971b8ce27
4 changed files with 18 additions and 32 deletions

View file

@ -37,6 +37,10 @@ interface Element : Node {
DOMString? getAttribute(DOMString name);
[Pure]
DOMString? getAttributeNS(DOMString? namespace, DOMString localName);
[Pure]
Attr? getAttributeNode(DOMString name);
[Pure]
Attr? getAttributeNodeNS(DOMString? namespace, DOMString localName);
[Throws]
void setAttribute(DOMString name, DOMString value);
[Throws]