| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src=../media-file.js></script> | 4 <script src=../media-file.js></script> |
| 5 <script src=../media-controls.js></script> | 5 <script src=../media-controls.js></script> |
| 6 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 7 (Please avoid writing new tests using video-test.js) --> |
| 6 <script src=../video-test.js></script> | 8 <script src=../video-test.js></script> |
| 7 | 9 |
| 8 <script> | 10 <script> |
| 9 if (window.testRunner) | 11 if (window.testRunner) |
| 10 { | 12 { |
| 11 testRunner.dumpAsText(); | 13 testRunner.dumpAsText(); |
| 12 testRunner.waitUntilDone(); | 14 testRunner.waitUntilDone(); |
| 13 } | 15 } |
| 14 | 16 |
| 15 function startTest() | 17 function startTest() |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 53 |
| 52 <body> | 54 <body> |
| 53 <p>Tests that appending events for dispatching doesn't crash</p> | 55 <p>Tests that appending events for dispatching doesn't crash</p> |
| 54 <video autoplay id="videoElement"> | 56 <video autoplay id="videoElement"> |
| 55 <source src="../content/test.ogv"> | 57 <source src="../content/test.ogv"> |
| 56 <source src="../content/test.mp4"> | 58 <source src="../content/test.mp4"> |
| 57 <track src="captions-webvtt/captions-fast.vtt" default> | 59 <track src="captions-webvtt/captions-fast.vtt" default> |
| 58 </video> | 60 </video> |
| 59 </body> | 61 </body> |
| 60 </html> | 62 </html> |
| OLD | NEW |