mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Implemented Document.importNode
Spec: http://dom.spec.whatwg.org/#dom-document-importnode
This commit is contained in:
parent
f34a64049a
commit
8a457a2caa
4 changed files with 24 additions and 3 deletions
|
@ -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_);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue