| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>drag timebar test</title> | 4 <title>drag timebar test</title> |
| 5 <script src=media-controls.js></script> | 5 <script src=media-controls.js></script> |
| 6 <script src=media-file.js></script> | 6 <script src=media-file.js></script> |
| 7 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 8 (Please avoid writing new tests using video-test.js) --> |
| 7 <script src=video-test.js></script> | 9 <script src=video-test.js></script> |
| 8 <script> | 10 <script> |
| 9 var x; | 11 var x; |
| 10 var y; | 12 var y; |
| 11 var seekCount; | 13 var seekCount; |
| 12 var moveCount; | 14 var moveCount; |
| 13 | 15 |
| 14 if (window.testRunner) | 16 if (window.testRunner) |
| 15 testRunner.dumpAsText(); | 17 testRunner.dumpAsText(); |
| 16 | 18 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 video.play(); | 87 video.play(); |
| 86 } | 88 } |
| 87 </script> | 89 </script> |
| 88 </head> | 90 </head> |
| 89 | 91 |
| 90 <body onload="start()"> | 92 <body onload="start()"> |
| 91 <p>Test that dragging the timebar thumb causes seeks.</p> | 93 <p>Test that dragging the timebar thumb causes seeks.</p> |
| 92 <video controls></video> | 94 <video controls></video> |
| 93 </body> | 95 </body> |
| 94 </html> | 96 </html> |
| OLD | NEW |