Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / onload-single-line-comment.html
blobf07f49be45524a27fb852bc01ce05bbf143f411b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function loaded()
7 document.getElementById("result").innerHTML = "PASS";
8 if (window.testRunner)
9 testRunner.notifyDone();
12 if (window.testRunner) {
13 testRunner.waitUntilDone();
14 testRunner.dumpAsText()
16 </script>
17 </head>
18 <body onload="loaded();//">
19 <p>This test checks whether single line comments are parsed correctly in event handlers.
20 <div id="result">FAIL</div>
21 </body>
22 </html>