DOMImplementation

sealed external class DOMImplementation(source)

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

MDN Reference

Functions

Link copied to clipboard
fun createDocument(namespace: String?, qualifiedName: String?, doctype: DocumentType? = definedExternally): XMLDocument
Link copied to clipboard
fun createDocumentType(qualifiedName: String, publicId: String, systemId: String): DocumentType
Link copied to clipboard
fun createHTMLDocument(title: String = definedExternally): Document