Search


Search something to see results

DOMImplementation

An object providing methods which are not dependent on any particular document. Such an object is returned by the Document.implementation property.

MDN Reference

interface DOMImplementation {
    createDocument(
        namespace: null | string,
        qualifiedName: null | string,
        doctype?: null | DocumentType,
    ): XMLDocument;
    createDocumentType(
        qualifiedName: string,
        publicId: string,
        systemId: string,
    ): DocumentType;
    createHTMLDocument(title?: string): Document;
    hasFeature(...args: any[]): true;
}

Index

Methods

Methods

Parameters

  • namespace: null | string
  • qualifiedName: null | string
  • Optionaldoctype: null | DocumentType

Returns XMLDocument

Parameters

  • qualifiedName: string
  • publicId: string
  • systemId: string

Returns DocumentType

Parameters

  • Optionaltitle: string

Returns Document

Parameters

  • args: any[]

Returns true

MDN Reference