haXe API Documentation
Back |
Indexextern class js.html.NodeFilter
Available in js
- function acceptNode(n : Node) : Int
- static inline var FILTER_ACCEPT : Int
- Value returned by the
NodeFilter.acceptNode()
method when a node should be accepted. - static inline 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 inline 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 inline var SHOW_ALL : Int
- Shows all nodes.
- static inline 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 inline var SHOW_CDATA_SECTION : Int
- Shows
CDATASection
nodes. - static inline var SHOW_COMMENT : Int
- Shows
Comment
nodes. - static inline var SHOW_DOCUMENT : Int
- Shows
Document
nodes. - static inline var SHOW_DOCUMENT_FRAGMENT : Int
- Shows
DocumentFragment
nodes. - static inline var SHOW_DOCUMENT_TYPE : Int
- Shows
DocumentType
nodes. - static inline var SHOW_ELEMENT : Int
- Shows
Element
nodes. - static inline 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 inline var SHOW_ENTITY_REFERENCE : Int
- Shows
EntityReference
nodes. - static inline 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. - static inline var SHOW_PROCESSING_INSTRUCTION : Int
- Shows
ProcessingInstruction
nodes. - static inline var SHOW_TEXT : Int
- Shows
Text
nodes.
Back |
Index