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