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