ladybird/Userland/Libraries/LibWeb/DOM/DOMImplementation.idl
2022-03-02 09:18:19 +01:00

13 lines
494 B
Plaintext

#import <DOM/Document.idl>
interface DOMImplementation {
// FIXME: This should return XMLDocument instead of Document.
[NewObject] Document createDocument(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();
};