ChildNode.idl 480 B

12345678910
  1. // FIXME: This #import causes a circular import-related error
  2. // #import <DOM/Node.idl>
  3. // https://dom.spec.whatwg.org/#childnode
  4. interface mixin ChildNode {
  5. [CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
  6. [CEReactions, Unscopable] undefined after((Node or DOMString)... nodes);
  7. [CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
  8. [CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
  9. };