| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Test rendering of volume slider of video tag</title> | 3 <title>Test rendering of volume slider of video tag</title> |
| 4 <script src=media-file.js></script> | 4 <script src=media-file.js></script> |
| 5 <script src=media-controls.js></script> | 5 <script src=media-controls.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 var video; | 10 var video; |
| 11 var panel; | 11 var panel; |
| 12 var muteButtonCoordinates; | 12 var muteButtonCoordinates; |
| 13 | 13 |
| 14 function init() | 14 function init() |
| 15 { | 15 { |
| 16 video = document.getElementsByTagName("video")[0]; | 16 video = document.getElementsByTagName("video")[0]; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 endTest(); | 79 endTest(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 </script> | 82 </script> |
| 83 </head> | 83 </head> |
| 84 <body onload="init()"> | 84 <body onload="init()"> |
| 85 Tests that showing / hiding video controls uses the sets the display:none pr
operty<br> | 85 Tests that showing / hiding video controls uses the sets the display:none pr
operty<br> |
| 86 <video onplay="test()" controls></video> | 86 <video onplay="test()" controls></video> |
| 87 </body> | 87 </body> |
| 88 </html> | 88 </html> |
| OLD | NEW |