2022-02-15 22:40:51 +03:30
|
|
|
#import <DOM/Document.idl>
|
|
|
|
|
2020-11-13 06:08:06 +00:00
|
|
|
interface DOMImplementation {
|
|
|
|
|
2021-05-04 21:40:31 +01:00
|
|
|
// FIXME: This should return XMLDocument instead of Document.
|
2022-03-02 08:56:17 +01:00
|
|
|
[NewObject] Document createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
2021-05-04 21:40:31 +01:00
|
|
|
[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
|
|
|
};
|