diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/ChildNode.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/ChildNode.idl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/ChildNode.idl b/Userland/Libraries/LibWeb/DOM/ChildNode.idl index 0cb5cefcd3..def04c30a6 100644 --- a/Userland/Libraries/LibWeb/DOM/ChildNode.idl +++ b/Userland/Libraries/LibWeb/DOM/ChildNode.idl @@ -1,5 +1,3 @@ -#import <DOM/Node.idl> - // https://dom.spec.whatwg.org/#childnode interface mixin ChildNode { [CEReactions, Unscopable] undefined before((Node or DOMString)... nodes); @@ -7,7 +5,3 @@ interface mixin ChildNode { [CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes); [CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove(); }; - -DocumentType includes ChildNode; -Element includes ChildNode; -CharacterData includes ChildNode; |