Haxe API Documentation
Back | Index
extern class js.html.TreeWalker
Available in js

The TreeWalker object represents the nodes of a document subtree and a position within them.

A TreeWalker can be created using the createTreeWalker() method of the document object.



Documentation for this class was provided by MDN.
var currentNode : Node
Setter throws DOMException.
var expandEntityReferences(default,null) : Bool
var filter(default,null) : NodeFilter
var root(default,null) : Node
var whatToShow(default,null) : Int
function firstChild() : Node
function lastChild() : Node
function nextNode() : Node
function nextSibling() : Node
function parentNode() : Node
function previousNode() : Node
function previousSibling() : Node
Back | Index