OLD | NEW |
1 <video controls></video> | 1 <video controls></video> |
2 <p>Test that QuickTime file with unsupported track types only generates an error
.<p> | 2 <p>Test that QuickTime file with unsupported track types only generates an error
.<p> |
3 <script src=media-file.js></script> | 3 <script src=media-file.js></script> |
| 4 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 5 (Please avoid writing new tests using video-test.js) --> |
4 <script src=video-test.js></script> | 6 <script src=video-test.js></script> |
5 <script> | 7 <script> |
6 video.src = findMediaFile("video", "content/unsupported_track"); | 8 video.src = findMediaFile("video", "content/unsupported_track"); |
7 waitForEvent("error", function () { | 9 waitForEvent("error", function () { |
8 testExpected("video.error", null, "!="); | 10 testExpected("video.error", null, "!="); |
9 endTest(); | 11 endTest(); |
10 }); | 12 }); |
11 </script> | 13 </script> |
OLD | NEW |