mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
10 lines
480 B
Text
10 lines
480 B
Text
// FIXME: This #import causes a circular import-related error
|
|
// #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();
|
|
};
|