Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / comment-dom-node.html
blob68a1d0a20dd00f6e0696a41db1a9ceb709a23d06
1 <html>
2 <body>
3 <div id="test"><!--SUCESS--></div>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 x = document.getElementById("test").firstChild;
8 if (x && x.nodeType == Node.COMMENT_NODE)
9 document.write(x.nodeValue);
10 else
11 document.write("FAIL");
12 </script>
13 </body>
14 </html>