mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 23:29:52 +00:00
This replaces the underlying storage of CharacterData with Utf16String and deals with the fallout.
10 lines
495 B
Text
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();
|
|
};
|