Implemented Node.adoptNode

Spec:
http://dom.spec.whatwg.org/#dom-document-adoptnode
This commit is contained in:
Bruno de Oliveira Abinader 2014-03-17 00:56:21 -04:00
parent 8a457a2caa
commit 990545c310
4 changed files with 19 additions and 1 deletions

View file

@ -38,6 +38,8 @@ interface Document : Node {
[Throws]
Node importNode(Node node, optional boolean deep = false);
[Throws]
Node adoptNode(Node node);
[Creator, Throws]
Event createEvent(DOMString interface_);