mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Implement document.createProcessingInstruction
Spec: http://dom.spec.whatwg.org/#dom-document-createprocessinginstruction This is a sub-task for #1428.
This commit is contained in:
parent
799e0ace78
commit
ac8c659d2b
4 changed files with 39 additions and 2 deletions
|
@ -50,8 +50,8 @@ interface Document : Node {
|
|||
Text createTextNode(DOMString data);
|
||||
[Creator]
|
||||
Comment createComment(DOMString data);
|
||||
/*[Creator, Throws]
|
||||
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);*/
|
||||
[Creator, Throws]
|
||||
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
|
||||
|
||||
/*[Throws]
|
||||
Node importNode(Node node, optional boolean deep = true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue