Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / media / controls-css-overload.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2    "http://www.w3.org/TR/html4/strict.dtd">
3
4 <html>
5 <head>
6     <title>Testing that overloading some controls doesn't crash the browser</title>
7         <style>
8             .nocontrols::-webkit-media-controls-panel{
9                 display:none;
10             }
11             .notimeline::-webkit-media-controls-timeline-container{
12                 display:none;
13             }
14         </style>
15     <script src=video-test.js></script>
16 </head>
17 <body>
18     <video class="nocontrols" width=300 height=200 controls></video>
19     <video class="notimeline" width=300 height=200 controls></video>
20     <script>
21     consoleWrite("I did not crash");
22     endTest();
23     </script>
24 </body>
25 </html>