Files
ladybird/Libraries/LibWeb/DOM/ChildNode.idl
Shannon Booth e2f0c340d4 LibWeb: Remove some outdated #import related FIXMEs
We no longer require IDL files to import from one another, so these
FIXMEs about circular references have been fixed.
2026-05-03 10:56:45 +02:00

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();
};