Implemented Document.importNode

Spec:
http://dom.spec.whatwg.org/#dom-document-importnode
This commit is contained in:
Bruno de Oliveira Abinader 2014-03-17 00:55:57 -04:00
parent f34a64049a
commit 8a457a2caa
4 changed files with 24 additions and 3 deletions

View file

@ -36,6 +36,9 @@ interface Document : Node {
[Creator, Throws]
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
[Throws]
Node importNode(Node node, optional boolean deep = false);
[Creator, Throws]
Event createEvent(DOMString interface_);
};