소스 검색

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

Tim Ledbetter 1 년 전
부모
커밋
bd72ff5669
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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 systemId;
 };
+
+DocumentType includes ChildNode;