浏览代码

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;