LibWeb: Expose ChildNode methods on the DocumentType IDL interface

This commit is contained in:
Tim Ledbetter 2024-07-18 22:26:49 +01:00 committed by Andreas Kling
commit bd72ff5669
Notes: sideshowbarker 2024-07-19 21:35:48 +09:00

View file

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