mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
8 lines
391 B
Text
8 lines
391 B
Text
|
|
// 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();
|
||
|
|
};
|