Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / media-can-load-when-hidden.html
blob348140196c8daea6dbccd27f3ee86beb78a89f5a
1 <html>
2 <head>
3 <style>
4 video {display:none; background-color: yellow; width: 320px; height: 240px;}
5 </style>
6 </head>
7 <body onload="start()">
9 <video controls ></video>
11 <p>Test HTMLMediaElement to be sure that the video is getting loaded even if the element
12 is hidden.</p>
13 <script src=media-file.js></script>
14 <script src=video-test.js></script>
15 <script>
16 function start()
18 video = document.getElementsByTagName('video')[0];
19 waitForEvent('durationchange', function() { endTest(); });
20 video.src = findMediaFile("video", "content/test");
22 </script>
23 </body>
24 </html>