DOMImplementation.Document

class DOMImplementation
@safe
class Document : NodeWithChildren , dom.Document {}

Constructors

this
this()
Undocumented in source.

Members

Functions

adoptNode
Node adoptNode(dom.Node source)
Undocumented in source. Be warned that the author may not have intended to support it.
appendChild
Node appendChild(dom.Node newChild)
Undocumented in source. Be warned that the author may not have intended to support it.
createAttribute
Attr createAttribute(DOMString name)
Undocumented in source. Be warned that the author may not have intended to support it.
createAttributeNS
Attr createAttributeNS(DOMString namespaceURI, DOMString qualifiedName)
Undocumented in source. Be warned that the author may not have intended to support it.
createCDATASection
CDATASection createCDATASection(DOMString data)
Undocumented in source. Be warned that the author may not have intended to support it.
createComment
Comment createComment(DOMString data)
Undocumented in source. Be warned that the author may not have intended to support it.
createDocumentFragment
DocumentFragment createDocumentFragment()
Undocumented in source. Be warned that the author may not have intended to support it.
createElement
Element createElement(DOMString tagName)
Undocumented in source. Be warned that the author may not have intended to support it.
createElementNS
Element createElementNS(DOMString namespaceURI, DOMString qualifiedName)
Undocumented in source. Be warned that the author may not have intended to support it.
createEntityReference
EntityReference createEntityReference(DOMString name)
Undocumented in source. Be warned that the author may not have intended to support it.
createProcessingInstruction
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data)
Undocumented in source. Be warned that the author may not have intended to support it.
createTextNode
Text createTextNode(DOMString data)
Undocumented in source. Be warned that the author may not have intended to support it.
getElementById
Element getElementById(DOMString elementId)
Undocumented in source. Be warned that the author may not have intended to support it.
getElementsByTagName
ElementsByTagName getElementsByTagName(DOMString tagname)
Undocumented in source. Be warned that the author may not have intended to support it.
getElementsByTagNameNS
ElementsByTagNameNS getElementsByTagNameNS(DOMString namespaceURI, DOMString localName)
Undocumented in source. Be warned that the author may not have intended to support it.
importNode
Node importNode(dom.Node node, bool deep)
Undocumented in source. Be warned that the author may not have intended to support it.
insertBefore
Node insertBefore(dom.Node newChild, dom.Node refChild)
Undocumented in source. Be warned that the author may not have intended to support it.
isDefaultNamespace
bool isDefaultNamespace(DOMString namespaceURI)
Undocumented in source. Be warned that the author may not have intended to support it.
lookupNamespaceURI
DOMString lookupNamespaceURI(DOMString prefix)
Undocumented in source. Be warned that the author may not have intended to support it.
lookupPrefix
DOMString lookupPrefix(DOMString namespaceURI)
Undocumented in source. Be warned that the author may not have intended to support it.
normalizeDocument
void normalizeDocument()
Undocumented in source. Be warned that the author may not have intended to support it.
removeChild
Node removeChild(dom.Node oldChild)
Undocumented in source. Be warned that the author may not have intended to support it.
renameNode
Node renameNode(dom.Node n, DOMString namespaceURI, DOMString qualifiedName)
Undocumented in source. Be warned that the author may not have intended to support it.
replaceChild
Node replaceChild(dom.Node newChild, dom.Node oldChild)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

doctype
DocumentType doctype [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
documentElement
Element documentElement [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
documentURI
DOMString documentURI [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
documentURI
DOMString documentURI [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
domConfig
DOMConfiguration domConfig [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
implementation
DOMImplementation implementation [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
inputEncoding
DOMString inputEncoding [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
nodeName
DOMString nodeName [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
nodeType
dom.NodeType nodeType [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
strictErrorChecking
bool strictErrorChecking [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
strictErrorChecking
bool strictErrorChecking [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
xmlEncoding
DOMString xmlEncoding [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
xmlStandalone
bool xmlStandalone [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
xmlStandalone
bool xmlStandalone [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
xmlVersion
DOMString xmlVersion [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
xmlVersion
DOMString xmlVersion [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From NodeWithChildren

childNodes
ChildList childNodes [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
firstChild
Node firstChild [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
lastChild
Node lastChild [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
insertBefore
Node insertBefore(dom.Node _newChild, dom.Node _refChild)
Undocumented in source. Be warned that the author may not have intended to support it.
replaceChild
Node replaceChild(dom.Node newChild, dom.Node oldChild)
Undocumented in source. Be warned that the author may not have intended to support it.
removeChild
Node removeChild(dom.Node _oldChild)
Undocumented in source. Be warned that the author may not have intended to support it.
appendChild
Node appendChild(dom.Node _newChild)
Undocumented in source. Be warned that the author may not have intended to support it.
hasChildNodes
bool hasChildNodes()
Undocumented in source. Be warned that the author may not have intended to support it.
isAncestor
bool isAncestor(Node other)
Undocumented in source. Be warned that the author may not have intended to support it.
textContent
DOMString textContent [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
textContent
DOMString textContent [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.

Meta