DOMNode

Constructors

this
this(WebKitDOMNode* webKitDOMNode, bool ownedRef)

Sets our main struct and passes it to the parent class.

Members

Functions

appendChild
DOMNode appendChild(DOMNode newChild)
cloneNodeWithError
DOMNode cloneNodeWithError(bool deep)
compareDocumentPosition
ushort compareDocumentPosition(DOMNode other)
contains
bool contains(DOMNode other)
getBaseUri
string getBaseUri()
getChildNodes
DOMNodeList getChildNodes()
getDOMNodeStruct
WebKitDOMNode* getDOMNodeStruct(bool transferOwnership)

Get the main Gtk struct

getFirstChild
DOMNode getFirstChild()
getLastChild
DOMNode getLastChild()
getLocalName
string getLocalName()
getNamespaceUri
string getNamespaceUri()
getNextSibling
DOMNode getNextSibling()
getNodeName
string getNodeName()
getNodeType
ushort getNodeType()
getNodeValue
string getNodeValue()
getOwnerDocument
DOMDocument getOwnerDocument()
getParentElement
DOMElement getParentElement()
getParentNode
DOMNode getParentNode()
getPrefix
string getPrefix()
getPreviousSibling
DOMNode getPreviousSibling()
getStruct
void* getStruct()

the main Gtk struct as a void*

getTextContent
string getTextContent()
hasChildNodes
bool hasChildNodes()
insertBefore
DOMNode insertBefore(DOMNode newChild, DOMNode refChild)
isDefaultNamespace
bool isDefaultNamespace(string namespaceURI)
isEqualNode
bool isEqualNode(DOMNode other)
isSameNode
bool isSameNode(DOMNode other)
isSupported
bool isSupported(string feature, string version_)
lookupNamespaceUri
string lookupNamespaceUri(string prefix)
lookupPrefix
string lookupPrefix(string namespaceURI)
normalize
void normalize()
removeChild
DOMNode removeChild(DOMNode oldChild)
replaceChild
DOMNode replaceChild(DOMNode newChild, DOMNode oldChild)
setNodeValue
void setNodeValue(string value)
setPrefix
void setPrefix(string value)
setTextContent
void setTextContent(string value)

Mixins

__anonymous
mixin DOMEventTargetT!(WebKitDOMNode)
Undocumented in source.

Static functions

forJsValue
DOMNode forJsValue(Value value)

Get the #WebKitDOMNode for the DOM node referenced by @value.

getType
GType getType()

Variables

webKitDOMNode
WebKitDOMNode* webKitDOMNode;

the main Gtk struct

Inherited Members

From DOMObject

webKitDOMObject
WebKitDOMObject* webKitDOMObject;

the main Gtk struct

getDOMObjectStruct
WebKitDOMObject* getDOMObjectStruct(bool transferOwnership)

Get the main Gtk struct

getStruct
void* getStruct()

the main Gtk struct as a void*

getType
GType getType()

From DOMEventTargetIF

getDOMEventTargetStruct
WebKitDOMEventTarget* getDOMEventTargetStruct(bool transferOwnership)

Get the main Gtk struct

getStruct
void* getStruct()

the main Gtk struct as a void*

getType
GType getType()
addEventListener
bool addEventListener(string eventName, GCallback handler, bool useCapture, void* userData)
addEventListenerWithClosure
bool addEventListenerWithClosure(string eventName, Closure handler, bool useCapture)

Version of webkit_dom_event_target_add_event_listener() using a closure instead of a callbacks for easier binding in other languages.

dispatchEvent
bool dispatchEvent(DOMEvent event)
removeEventListener
bool removeEventListener(string eventName, GCallback handler, bool useCapture)
removeEventListenerWithClosure
bool removeEventListenerWithClosure(string eventName, Closure handler, bool useCapture)

Version of webkit_dom_event_target_remove_event_listener() using a closure instead of a callbacks for easier binding in other languages.

Meta