mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:05:08 +00:00
13 lines
511 B
Text
13 lines
511 B
Text
#import <DOM/Node.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#childnode
|
|
interface mixin ChildNode {
|
|
[CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined after((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
};
|
|
|
|
DocumentType includes ChildNode;
|
|
Element includes ChildNode;
|
|
CharacterData includes ChildNode;
|