mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
14 lines
511 B
Plaintext
14 lines
511 B
Plaintext
#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;
|