Variables
Inherited Variables
Defined by Document
read onlydocumentElement:Element
Returns the Element
that is a direct child of the document. For HTML documents, this is normally the html
element.
read onlyimplementation:DOMImplementation
Returns the DOM implementation associated with the current document.
read onlylastStyleSheetSet:String
Returns the name of the style sheet set that was last enabled. Has the value null
until the style sheet is changed by setting the value of document.selectedStyleSheetSet
.
read onlypointerLockElement:Element
Returns the element set as the target for mouse events while the pointer is locked. null
if lock is pending, pointer is unlocked, or if the target is in another document.
read onlypreferredStyleSheetSet:String
Returns the preferred style sheet set as specified by the page author.
read onlystyleSheetSets:DOMStringList
Returns a list of the style sheet sets available on the document.
read onlystyleSheets:StyleSheetList
Returns a list of the style sheet objects on the current document.
read onlyvisibilityState:VisibilityState
Returns a string
denoting the visibility state of the document. Possible values are visible
, hidden
, prerender
, and unloaded
.
Defined by Node
Returns a DOMString
representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'
.
read onlychildNodes:NodeList
read onlyfirstChild:Node
Returns a Node
representing the first direct child node of the node, or null
if the node has no child.
Returns a Node
representing the last direct child node of the node, or null
if the node has no child.
Returns a DOMString
representing the local part of the qualified name of an element.
Note: In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. 1.9.2
read onlynamespaceURI:String
The namespace URI of this node, or null
if it is no namespace.
Note: In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the https://www.w3.org/1999/xhtml/
namespace in both HTML and XML trees. 1.9.2
read onlynextSibling:Node
Returns a Node
representing the next node in the tree, or null
if there isn't such node.
Returns a DOMString
containing the name of the Node
. The structure of the name will differ with the name type. E.g. An HTMLElement
will contain the name of the corresponding tag, like 'audio'
for an HTMLAudioElement
, a Text
node will have the '#text'
string, or a Document
node will have the '#document'
string.
Returns an unsigned short
representing the type of the node. Possible values are:
ELEMENT_NODE |
1 |
ATTRIBUTE_NODE (deprecated) |
2 |
TEXT_NODE |
3 |
CDATA_SECTION_NODE (deprecated) |
4 |
ENTITY_REFERENCE_NODE (deprecated) |
5 |
ENTITY_NODE (deprecated) |
6 |
PROCESSING_INSTRUCTION_NODE |
7 |
COMMENT_NODE |
8 |
DOCUMENT_NODE |
9 |
DOCUMENT_TYPE_NODE |
10 |
DOCUMENT_FRAGMENT_NODE |
11 |
NOTATION_NODE (deprecated) |
12 |
read onlyownerDocument:HTMLDocument
Returns the Document
that this node belongs to. If no document is associated with it, returns null
.
read onlyparentElement:Element
read onlyparentNode:Node
Returns a Node
that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null
.
read onlypreviousSibling:Node
Returns a Node
representing the previous node in the tree, or null
if there isn't such node.
Inherited Methods
Defined by Document
caretPositionFromPoint (x:Float, y:Float):CaretPosition
Gets the CaretPosition
at or near the specified coordinates.
convertPointFromNode (point:DOMPointInit, from:EitherType<Text, EitherType<Element, HTMLDocument>>, ?options:ConvertCoordinateOptions):DOMPoint
Throws:
null | DOMError |
---|
convertQuadFromNode (quad:DOMQuad, from:EitherType<Text, EitherType<Element, HTMLDocument>>, ?options:ConvertCoordinateOptions):DOMQuad
Throws:
null | DOMError |
---|
convertRectFromNode (rect:DOMRectReadOnly, from:EitherType<Text, EitherType<Element, HTMLDocument>>, ?options:ConvertCoordinateOptions):DOMQuad
Throws:
null | DOMError |
---|
createElement (localName:String, typeExtension:String):Element
createElement (localName:String):Element
Throws:
null | DOMError |
---|
createElementNS (namespace_:String, qualifiedName:String, typeExtension:String):Element
createElementNS (namespace_:String, qualifiedName:String):Element
Throws:
null | DOMError |
---|
createNodeIterator (root:Node, whatToShow:Int = cast 4294967295, ?filter:NodeFilter):NodeIterator
Throws:
null | DOMError |
---|
createTouch (?view:Window, ?target:EventTarget, identifier:Int = 0, pageX:Int = 0, pageY:Int = 0, screenX:Int = 0, screenY:Int = 0, clientX:Int = 0, clientY:Int = 0, radiusX:Int = 0, radiusY:Int = 0, rotationAngle:Float = 0.0, force:Float = 0.0):Touch
Creates a Touch
object.
createTouchList (touches:Array<Touch>):TouchList
createTouchList (touch:Touch, touches:Rest<Touch>):TouchList
createTreeWalker (root:Node, whatToShow:Int = cast 4294967295, ?filter:NodeFilter):TreeWalker
Throws:
null | DOMError |
---|
elementFromPoint (x:Float, y:Float):Element
Returns the topmost element at the specified coordinates.
elementsFromPoint (x:Float, y:Float):Array<Element>
Returns an array of all elements at the specified coordinates.
enableStyleSheetsForSet (name:String):Void
Enables the style sheets for the specified style sheet set.
evaluate (expression:String, contextNode:Node, resolver:XPathNSResolver, type:Int, result:Dynamic):XPathResult
Throws:
null | DOMError |
---|
getAnimations ():Array<Animation>
Returns an array of all Animation
objects currently in effect whose target elements are descendants of the document
.
getElementsByClassName (classNames:String):HTMLCollection
Returns a list of elements with the given class name.
getElementsByTagName (localName:String):HTMLCollection
Returns a list of elements with the given tag name.
Defined by Node
compareDocumentPosition (other:Node):Int
Returns the context objects root which optionally includes the shadow root if it is available.
isDefaultNamespace (namespace_:String):Bool
Returns a Boolean
which indicates whether or not two nodes are of the same type and all their defining data points match.
isEqualNode (node:Node):Bool
Returns a Boolean
which indicates whether or not two nodes are of the same type and all their defining data points match.
lookupNamespaceURI (prefix:String):String
Clean up all the text nodes under this element (merge adjacent, remove empty).
lookupPrefix (namespace_:String):String
Clean up all the text nodes under this element (merge adjacent, remove empty).
Defined by EventTarget
addEventListener (type:String, listener:Function, capture:Bool = false):Void
addEventListener (type:String, listener:EventListener, capture:Bool = false, ?wantsUntrusted:Bool):Void
Throws:
null | DOMError |
---|
removeEventListener (type:String, listener:Function, capture:Bool = false):Void
removeEventListener (type:String, listener:EventListener, capture:Bool = false):Void
Throws:
null | DOMError |
---|