mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-13 02:16:52 +02:00
We no longer require IDL files to import from one another, so these FIXMEs about circular references have been fixed.
8 lines
406 B
Plaintext
8 lines
406 B
Plaintext
// https://dom.spec.whatwg.org/#childnode
|
|
interface mixin ChildNode {
|
|
[CEReactions, Unscopable] undefined before((Node or Utf16DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined after((Node or Utf16DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined replaceWith((Node or Utf16DOMString)... nodes);
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
};
|