mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
05e9dceba6
1% progression on ACID3. :^)
13 lines
494 B
Plaintext
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();
|
|
|
|
};
|