Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / onload-re-entry.html
1 <script>
2 var x = 0;
3 function write_stuff()
4 {
5     x++;
6     document.open();
7     document.write("<p>" + x + "</p>");
8 }
9 </script>
10 <body onload="write_stuff()">
11 </body>
12