/** Test for Bug 725069 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() { varbody = document.querySelector("body");
is(body.firstChild.nodeType, body.TEXT_NODE, "The first node is a text node");
is(body.firstChild.nodeValue, "abc", "The first text node is there");
is(body.firstChild.nextSibling.nodeType, body.COMMENT_NODE, "The second node is a comment node");
is(body.firstChild.nextSibling.nodeValue, " XXX ", "The value of the comment node is not changed");
is(body.firstChild.nextSibling.nextSibling.nodeType, body.TEXT_NODE, "The last text node is a text node");
is(body.firstChild.nextSibling.nextSibling.nodeValue, "def", "The last next node is there");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>
¤ Dauer der Verarbeitung: 0.15 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.