mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Implement insertBefore and reimplement appendChild.
This commit is contained in:
parent
2c3d5ec79f
commit
2ca1eede9a
5 changed files with 175 additions and 52 deletions
|
@ -57,8 +57,8 @@ interface Node /*: EventTarget*/ {
|
|||
attribute DOMString? nodeValue;
|
||||
[SetterThrows, Pure]
|
||||
attribute DOMString? textContent;
|
||||
/*[Throws]
|
||||
Node insertBefore(Node node, Node? child);*/ //XXXjdm we don't deal well with Node? parameters
|
||||
[Throws]
|
||||
Node insertBefore(Node node, Node? child);
|
||||
[Throws]
|
||||
Node appendChild(Node node);
|
||||
[Throws]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue