OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Video element gets layer</title> | 3 <title>Video element gets layer</title> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 video { | 5 video { |
6 border: 1px solid black; | 6 border: 1px solid black; |
7 margin: 50px; | 7 margin: 50px; |
8 } | 8 } |
9 </style> | 9 </style> |
10 </head> | 10 </head> |
11 <body> | 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 g
ets a RenderLayer.</p> | 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 g
ets a Layer.</p> |
13 <video id="video" controls></video> | 13 <video id="video" controls></video> |
14 <script type="text/javascript" charset="utf-8"> | 14 <script type="text/javascript" charset="utf-8"> |
15 document.getElementById('video').style.opacity = 0.5; | 15 document.getElementById('video').style.opacity = 0.5; |
16 </script> | 16 </script> |
17 </body> | 17 </body> |
18 </html> | 18 </html> |
OLD | NEW |