1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

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
parent 7e8d71f7fc
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;