[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / fast / events / onload-single-line-comment.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function loaded()
6 {
7     document.getElementById("result").innerHTML = "PASS";
8     if (window.layoutTestController)
9         layoutTestController.notifyDone();
10 }
11
12 if (window.layoutTestController) {
13     layoutTestController.waitUntilDone();
14     layoutTestController.dumpAsText()    
15 }
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>