Procházet zdrojové kódy

LibWeb: Expose `ChildNode` methods on the `DocumentType` IDL interface

Tim Ledbetter před 1 rokem
rodič
revize
bd72ff5669
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      Userland/Libraries/LibWeb/DOM/DocumentType.idl

+ 2 - 0
Userland/Libraries/LibWeb/DOM/DocumentType.idl

@@ -8,3 +8,5 @@ interface DocumentType : Node {
     readonly attribute DOMString publicId;
     readonly attribute DOMString publicId;
     readonly attribute DOMString systemId;
     readonly attribute DOMString systemId;
 };
 };
+
+DocumentType includes ChildNode;