Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / onunload.html
1 <html>
2 <body onunload="unload()" onload="load()">
3 <script>
4 if (window.testRunner) {
5     testRunner.dumpAsText();
6     testRunner.waitUntilDone();
7 }
8
9 function load()
10 {
11     location = "data:text/html,You should have seen an unload alert appear.<script>if (window.testRunner) testRunner.notifyDone(); </" + "script>";
12 }
13
14 function unload()
15 {
16     alert("unload");
17 }
18 </script>
19 start document
20 </body>
21 </html>