vote up 2 vote down star

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.

flag
This question is probably relevant to other programming languages, but I am specifically wondering about Java (not Javascript). – Adrian Mouat Sep 15 '08 at 19:51

5 Answers

vote up 3 vote down check

In my experience, yes. The DOM spec isn't any clearer. If you're paranoid, try something like

current = node.firstChild;
while(null != current) {
    ...
    current = current.nextSibling;
}
link|flag
vote up 0 vote down

In your example, as presented. I believe so. However, I've experienced real-world experiences where spaces have been interpreted as nodes so:


<a><b/><c/><d/></a>

is different than


<a><b/> <c/><d/></a>

if you're looking at index [1], firefox and IE may present different results. I would advise against relying on the order depending on your need.

link|flag
Well, it is different; there's a text node in the middle! – Adrian Mouat Sep 15 '08 at 19:48
vote up 0 vote down

I'd love to tell you that this is guaranteed (as I believe it is) but the Document Object Model specification itself seems ambiguous in this case. I'm pretty sure that it's always document-order, though.

link|flag
vote up 0 vote down

My experience is that every time that I have bothered to look it has been in document order. However, I believe that I read somewhere it is not guaranteed to be in document order. I can't find where I read that right now, so take it as hearsay. I think your best bet if you must have them in document order would be to use FirstChild then NextSibling until there are no more sibs.

link|flag
I type way too slow. – EBGreen Sep 15 '08 at 19:46
I seem to as well; it's surprising how quickly people jump on these questions here! – Calum Sep 15 '08 at 19:49
Yes, but no-one has been able to answer it definitively! Let me know if you find that reference. – Adrian Mouat Sep 15 '08 at 20:56
vote up 1 vote down

A document-ordered node list is the behavior in other implementations of the DOM, such as Javascript's or Python's. And a randomly-ordered node list would be utterly useless. I think it's safe to depend on nodes being returned in document order.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.