OLD | NEW |
1 <html> | 1 <!DOCTYPE html> |
2 <head> | 2 <title>Test HTMLMediaElement to be sure that the video is getting loaded even if
the element is hidden.</title> |
3 <style> | 3 <style> |
4 video {display:none; background-color: yellow; width: 320px; height:
240px;} | 4 video { display: none; } |
5 </style> | 5 </style> |
6 </head> | 6 <video></video> |
7 <body onload="start()"> | 7 <script src="media-file.js"></script> |
8 | 8 <script src="../resources/testharness.js"></script> |
9 <video controls ></video> | 9 <script src="../resources/testharnessreport.js"></script> |
10 | 10 <script> |
11 <p>Test HTMLMediaElement to be sure that the video is getting loaded eve
n if the element | 11 async_test(function(t) { |
12 is hidden.</p> | 12 var video = document.querySelector("video"); |
13 <script src=media-file.js></script> | 13 video.ondurationchange = t.step_func_done(); |
14 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 | 14 video.src = findMediaFile("video", "content/test"); |
15 (Please avoid writing new tests using video-test.js) --> | 15 }); |
16 <script src=video-test.js></script> | 16 </script> |
17 <script> | |
18 function start() | |
19 { | |
20 video = document.getElementsByTagName('video')[0]; | |
21 waitForEvent('durationchange', function() { endTest(); }); | |
22 video.src = findMediaFile("video", "content/test"); | |
23 } | |
24 </script> | |
25 </body> | |
26 </html> | |
OLD | NEW |