mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
a8e3400a2a
Which the implementation was already doing, so no behaviour change :^)
14 lines
540 B
Text
14 lines
540 B
Text
#import <DOM/Document.idl>
|
|
#import <DOM/XMLDocument.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#domimplementation
|
|
[Exposed=Window]
|
|
interface DOMImplementation {
|
|
|
|
[NewObject] XMLDocument createDocument([FlyString] DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
|
[NewObject] Document createHTMLDocument(optional DOMString title);
|
|
[NewObject] DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
|
|
|
|
boolean hasFeature();
|
|
|
|
};
|