mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 15:52:21 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
517 B
Text
9 lines
517 B
Text
// https://dom.spec.whatwg.org/#domimplementation
|
|
[Exposed=Window]
|
|
interface DOMImplementation {
|
|
[NewObject] DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
|
|
[NewObject] XMLDocument createDocument([FlyString] DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
|
[NewObject] Document createHTMLDocument(optional Utf16DOMString title);
|
|
|
|
boolean hasFeature(); // useless; always returns true
|
|
};
|