|
@@ -1,5 +1,3 @@
|
|
-#import <DOM/Node.idl>
|
|
|
|
-
|
|
|
|
// https://dom.spec.whatwg.org/#childnode
|
|
// https://dom.spec.whatwg.org/#childnode
|
|
interface mixin ChildNode {
|
|
interface mixin ChildNode {
|
|
[CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
|
|
@@ -7,7 +5,3 @@ interface mixin ChildNode {
|
|
[CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
};
|
|
};
|
|
-
|
|
|
|
-DocumentType includes ChildNode;
|
|
|
|
-Element includes ChildNode;
|
|
|
|
-CharacterData includes ChildNode;
|
|
|