2020-11-13 06:08:06 +00:00
|
|
|
interface DOMImplementation {
|
|
|
|
|
|
2021-05-04 21:40:31 +01:00
|
|
|
// FIXME: This is missing "optional DocumentType? doctype = null" at the end.
|
|
|
|
|
// FIXME: This should return XMLDocument instead of Document.
|
|
|
|
|
[NewObject] Document createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName);
|
|
|
|
|
[NewObject] Document createHTMLDocument(optional DOMString title);
|
|
|
|
|
[NewObject] DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
|
2020-11-13 06:08:06 +00:00
|
|
|
|
|
|
|
|
boolean hasFeature();
|
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|