2023-11-08 11:04:56 -07:00
|
|
|
// FIXME: This #import causes a circular import-related error
|
|
|
|
|
// #import <DOM/Node.idl>
|
|
|
|
|
|
2022-07-27 21:14:16 +01:00
|
|
|
// https://dom.spec.whatwg.org/#childnode
|
|
|
|
|
interface mixin ChildNode {
|
2025-07-24 12:05:52 -04:00
|
|
|
[CEReactions, Unscopable] undefined before((Node or Utf16DOMString)... nodes);
|
|
|
|
|
[CEReactions, Unscopable] undefined after((Node or Utf16DOMString)... nodes);
|
|
|
|
|
[CEReactions, Unscopable] undefined replaceWith((Node or Utf16DOMString)... nodes);
|
2022-07-27 21:14:16 +01:00
|
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
|
|
|
};
|