implement Document#createAttribute

This commit is contained in:
Rohan Prinja 2014-11-22 14:41:47 +05:30
parent b4c3aec383
commit 4b754bd457
8 changed files with 43 additions and 66 deletions

View file

@ -35,6 +35,9 @@ interface Document : Node {
[Throws]
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
[Throws]
Attr createAttribute(DOMString localName);
[Throws]
Node importNode(Node node, optional boolean deep = false);
[Throws]