Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / onload-name-collision.html
1 <html>
2 <body onload="onload()">
3 This tests that an onload handler named 'onload' is called properly.
4 You should see "PASS" below.
5
6 <div id='result'>FAIL: this text should be replaced on success.<div>
7 <script>
8 if (window.testRunner)
9   testRunner.dumpAsText();
10 function onload() {
11   var result = document.getElementById('result');
12   result.innerHTML='PASS: onload function gets called.';
13 }
14 </script>
15 </body>
16 </html>