LibWeb: Add initial implementation of document.implementation

This commit is contained in:
Luke 2020-11-13 06:08:06 +00:00 committed by Andreas Kling
commit dcb21b0c3a
Notes: sideshowbarker 2024-07-19 01:24:56 +09:00
9 changed files with 191 additions and 6 deletions

View file

@ -1,5 +1,7 @@
interface Document : Node {
readonly attribute DOMImplementation implementation;
readonly attribute DOMString contentType;
Element? getElementById(DOMString id);