1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

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
parent 3ec54448f5
commit dcb21b0c3a
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);