Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / layers / zindex-inherit.html
1 <html>
2 <head>
3 <style>
4 div { width:100px; height:100px }
5 .green { background-color: green }
6 .red { background-color: red }
7 </style>
8 </head>
9 <body>
10
11 You should see a green square below.
12
13 <div class="red" style="position:relative; z-index:0">
14   <div class="red" style="position:absolute; z-index:auto">
15     <div class="red" style="position:absolute; z-index:inherit">
16       <div class="green" style="position:absolute; z-index:1000">
17       </div>
18     </div>
19   </div>
20   <div class="red" style="position:absolute; z-index:100">
21   </div>
22 </div>
23 </body>
24 </html>