show/hide this revision's text 3 added 2 characters in body

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

current = node.firstChild;
while(null != current) {
    ...
    current = current.nextSibling;
}
show/hide this revision's text 2 added 1 characters in body

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

current = node.firstChild;
while(null != current) {
    ...
    current = current.nextSibling;
}
show/hide this revision's text 1

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

current = node.firstChild;
while(null != current) {
    ...
    current = current.nextSibling
}