class js.html.NodeFilter
Available on js
Class Fields
static var FILTER_ACCEPT:Int
Value returned by the NodeFilter.acceptNode()
method when a node should be accepted.
static var FILTER_REJECT:Int
Value to be returned by the NodeFilter.acceptNode()
method when a node should be rejected. The children of rejected nodes are not visited by the NodeIterator
or TreeWalker
object; this value is treated as "skip this node and all its children".
static var FILTER_SKIP:Int
Value to be returned by NodeFilter.acceptNode()
for nodes to be skipped by the NodeIterator
or TreeWalker
object. The children of skipped nodes are still considered. This is treated as "skip this node but not its children".
static var SHOW_ATTRIBUTE:Int
Shows attribute Attr
nodes. This is meaningful only when creating a NodeIterator
or TreeWalker
with an Attr
node as its root; in this case, it means that the attribute node will appear in the first position of the iteration or traversal. Since attributes are never children of other nodes, they do not appear when traversing over the document tree.
static var SHOW_ENTITY:Int
Shows Entity
nodes. This is meaningful only when creating a NodeIterator
or TreeWalker
with an Entity
node as its root; in this case, it means that the Entity
node will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.
static var SHOW_NOTATION:Int
Shows Notation
nodes. This is meaningful only when creating a NodeIterator
or TreeWalker
with a Notation
node as its root; in this case, it means that the Notation
node will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.