nextNode method
The TreeWalker.nextNode()
method moves the current
Node to the next visible node in the document order, and returns
the found node. If no such node exists, it returns null
and the current
node is not changed.
Implementation
external Node? nextNode();