1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 12:47:35 +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

@ -0,0 +1,7 @@
interface DOMImplementation {
Document createHTMLDocument(optional DOMString title);
boolean hasFeature();
}