ladybird/Libraries/LibWeb/DOM/ChildNode.idl
Timothy Flynn 8b6e3cb735 LibWeb+LibUnicode+WebContent: Port DOM:CharacterData to UTF-16
This replaces the underlying storage of CharacterData with Utf16String
and deals with the fallout.
2025-07-24 19:00:20 +02:00

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