| 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 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 | 5 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 |
| 6 (Please avoid writing new tests using video-test.js) --> | 6 (Please avoid writing new tests using video-test.js) --> |
| 7 <script src=video-test.js></script> | 7 <script src=video-test.js></script> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 | 10 |
| 11 function errorEvent() | 11 function errorEvent() |
| 12 { | 12 { |
| 13 logResult(false, "*** \"" + relativeURL(video.currentSrc) + "\"
should not have been processed!" ); | 13 logResult(false, "*** \"" + relativeURL(video.currentSrc) + "\"
should not have been processed!" ); |
| 14 consoleWrite(""); | 14 consoleWrite(""); |
| 15 endTest(); | 15 endTest(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 40 } | 40 } |
| 41 | 41 |
| 42 </script> | 42 </script> |
| 43 </head> | 43 </head> |
| 44 <body onload="setup()"> | 44 <body onload="setup()"> |
| 45 | 45 |
| 46 <p>Test that a single valid <source> element loads correctly</p> | 46 <p>Test that a single valid <source> element loads correctly</p> |
| 47 | 47 |
| 48 </body> | 48 </body> |
| 49 </html> | 49 </html> |
| OLD | NEW |