| 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 <script src=video-played.js></script> | 8 <script src=video-played.js></script> |
| 9 | 9 |
| 10 <script type="text/javascript"> | 10 <script type="text/javascript"> |
| 11 | 11 |
| 12 var previewURL = ""; | 12 var previewURL = ""; |
| 13 var localStream = null; | 13 var localStream = null; |
| 14 | 14 |
| 15 if (window.internals) | 15 if (window.internals) |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 waitForEvent("canplaythrough"); | 61 waitForEvent("canplaythrough"); |
| 62 } | 62 } |
| 63 | 63 |
| 64 </script> | 64 </script> |
| 65 </head> | 65 </head> |
| 66 | 66 |
| 67 <body onload="playPreview()"> | 67 <body onload="playPreview()"> |
| 68 <video width="320" height="240" autoplay="autoplay"></video> | 68 <video width="320" height="240" autoplay="autoplay"></video> |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |