DOMImplementation

The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.

Members

Functions

createDocument
Document createDocument(DOMString namespaceURI, DOMString qualifiedName, DocumentType doctype)

Creates a DOM Document object of the specified type with its document element.

createDocumentType
DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId)

Creates an empty DocumentType node. Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur.

getFeature
Object getFeature(string feature, string version_)
Undocumented in source.
hasFeature
bool hasFeature(string feature, string version_)
Undocumented in source.

Meta