Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / layers / video-layer.html
1 <html>
2 <head>
3   <title>Video element gets layer</title>
4   <style type="text/css">
5     video {
6       border: 1px solid black;
7       margin: 50px;
8     }
9   </style>
10 </head>
11 <body>
12   <p><a href="https://bugs.webkit.org/show_bug.cgi?id=25066">https://bugs.webkit.org/show_bug.cgi?id=25066</a><br> controls should not be misplaced when video gets a RenderLayer.</p>
13   <video id="video" controls></video>
14   <script type="text/javascript" charset="utf-8">
15     document.getElementById('video').style.opacity = 0.5;
16   </script>
17 </body>
18 </html>