Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / layers / add-layer-with-nested-stacking.html
1 <style>
2 #test {
3     overflow: hidden; /* Required to reproduce. */
4 }
5
6 #test::before {
7     content: "";  /* Some content required to reproduce. */
8     opacity: 0.999; /* Required to reproduce. */
9     display: block;
10     width: 100px;
11     height: 100px;
12     background-color: green;
13 }
14 </style>
15 <div id="test" style="display: none"></div>
16 <script type="text/javascript">
17     function test()
18     {
19         document.getElementById("test").style.display = "block";
20     }
21
22     if (!window.testRunner)
23         setTimeout(test, 0);
24     else {
25         document.body.offsetTop;
26         testRunner.display();
27         test();
28     }
29 </script>