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