DOMImplementation.Node

class DOMImplementation
@safe abstract
class Node : dom.Node {}

Constructors

this
this()
Undocumented in source.

Members

Classes

ChildList
class ChildList
Undocumented in source.

Functions

appendChild
Node appendChild(dom.Node newChild)
Undocumented in source. Be warned that the author may not have intended to support it.
cloneNode
Node cloneNode(bool deep)
Undocumented in source. Be warned that the author may not have intended to support it.
compareDocumentPosition
BitFlags!(dom.DocumentPosition) compareDocumentPosition(dom.Node _other)

Implementation of std.experimental.xml.dom.Node.compareDocumentPosition.

getFeature
Node getFeature(string feature, string version_)

Implementation of std.experimental.xml.dom.Node.getFeature.

getUserData
dom.UserData getUserData(string key)

Implementation of std.experimental.xml.dom.Node.getUserData.

hasAttributes
bool hasAttributes()
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.
insertBefore
Node insertBefore(dom.Node _newChild, dom.Node _refChild)
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.
isDefaultNamespace
bool isDefaultNamespace(DOMString namespaceURI)
Undocumented in source. Be warned that the author may not have intended to support it.
isEqualNode
bool isEqualNode(dom.Node other)

Implementation of std.experimental.xml.dom.Node.isEqualNode.

isSameNode
bool isSameNode(dom.Node other)

Implementation of std.experimental.xml.dom.Node.isSameNode.

isSupported
bool isSupported(string feature, string version_)

Implementation of std.experimental.xml.dom.Node.isSupported.

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.
nodeName
DOMString nodeName()
Undocumented in source.
normalize
void normalize()
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.
replaceChild
Node replaceChild(dom.Node newChild, dom.Node oldChild)
Undocumented in source. Be warned that the author may not have intended to support it.
setUserData
dom.UserData setUserData(string key, dom.UserData data, dom.UserDataHandler handler)

Implementation of std.experimental.xml.dom.Node.setUserData.

Properties

attributes
Element.Map attributes [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
baseURI
DOMString baseURI [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
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.
localName
DOMString localName [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
namespaceURI
DOMString namespaceURI [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
nextSibling
Node nextSibling [@property getter]

Implementation of std.experimental.xml.dom.Node.nextSibling.

nodeValue
DOMString nodeValue [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
nodeValue
DOMString nodeValue [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
ownerDocument
Document ownerDocument [@property getter]

Implementation of std.experimental.xml.dom.Node.ownerDocument.

parentNode
Node parentNode [@property getter]

Implementation of std.experimental.xml.dom.Node.parentNode.

prefix
DOMString prefix [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
prefix
DOMString prefix [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
previousSibling
Node previousSibling [@property getter]

Implementation of std.experimental.xml.dom.Node.previousSibling.

readonly
bool readonly [@property getter]

true if and only if this node is readonly.

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