| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>right click on timebar test</title> | 3 <title>right click on timebar test</title> |
| 4 <script src=media-controls.js></script> | 4 <script src=media-controls.js></script> |
| 5 <script src=media-file.js></script> | 5 <script src=media-file.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 <script> | 9 <script> |
| 10 if (window.testRunner) | 10 if (window.testRunner) |
| 11 testRunner.dumpAsText(); | 11 testRunner.dumpAsText(); |
| 12 | 12 |
| 13 function click() | 13 function click() |
| 14 { | 14 { |
| 15 if (window.eventSender) { | 15 if (window.eventSender) { |
| 16 var seekCoords; | 16 var seekCoords; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 enableFullTestDetailsPrinting(); | 50 enableFullTestDetailsPrinting(); |
| 51 } | 51 } |
| 52 </script> | 52 </script> |
| 53 </head> | 53 </head> |
| 54 | 54 |
| 55 <body onload="start()"> | 55 <body onload="start()"> |
| 56 <p>Test that right clicking on the timebar does not cause a seek.</p> | 56 <p>Test that right clicking on the timebar does not cause a seek.</p> |
| 57 <video controls></video> | 57 <video controls></video> |
| 58 </body> | 58 </body> |
| 59 </html> | 59 </html> |
| OLD | NEW |