OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body> |
3 <div id="test"><!--SUCESS--></div> | 3 <div id="test"><!--SUCCESS--></div> |
4 <script> | 4 <script> |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 x = document.getElementById("test").firstChild; | 7 x = document.getElementById("test").firstChild; |
8 if (x && x.nodeType == Node.COMMENT_NODE) | 8 if (x && x.nodeType == Node.COMMENT_NODE) |
9 document.write(x.nodeValue); | 9 document.write(x.nodeValue); |
10 else | 10 else |
11 document.write("FAIL"); | 11 document.write("FAIL"); |
12 </script> | 12 </script> |
13 </body> | 13 </body> |
14 </html> | 14 </html> |
OLD | NEW |