haikuwebkit/LayoutTests/fast/dom/comment-dom-node.html

15 lines
292 B
HTML

<html>
<body>
<div id="test"><!--SUCESS--></div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
x = document.getElementById("test").firstChild;
if (x && x.nodeType == Node.COMMENT_NODE)
document.write(x.nodeValue);
else
document.write("FAIL");
</script>
</body>
</html>