DOMImplementation.idl 509 B

1234567891011
  1. interface DOMImplementation {
  2. // FIXME: This is missing "optional DocumentType? doctype = null" at the end.
  3. // FIXME: This should return XMLDocument instead of Document.
  4. [NewObject] Document createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName);
  5. [NewObject] Document createHTMLDocument(optional DOMString title);
  6. [NewObject] DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
  7. boolean hasFeature();
  8. };