show/hide this revision's text 3 Rollback to Revision 1
show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Order of DOM NodeList returned by getChildNodes()

The DOM method getChildNodes() returns a NodeList of the children of the current Node. Whilst a NodeList is ordered, is the list guaranteed to be in document order?

For example, given <a><b/><c/><d/></a> is a.getChildNodes() guaranteed to return a NodeList with b, c and d in that order?

The javadoc isn't clear on this.