Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / media / video-no-audio.html
1 <html>
2     <head>
3         <script src=media-file.js></script>
4         <script>
5             if (window.testRunner)
6                 testRunner.waitUntilDone();
7     
8             function start()
9             {
10                 setSrcByTagName("video", findMediaFile("video", "content/counting"));
11             }
12
13             function finish()
14             {
15                 if (window.testRunner)
16                     testRunner.notifyDone();
17             }
18         </script>
19     </head>
20     <body onload="start()">
21         <p>Movie with no audio track. The volume button should not render.</p>
22         <video controls oncanplaythrough="finish()"></video>
23     </body>
24 </html>