OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <style> | 3 <style> |
4 #no-video-media { | 4 #no-video-media { |
5 width: 320px; | 5 width: 320px; |
6 height: 240px; | 6 height: 240px; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 | 9 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 |
10 (Please avoid writing new tests using video-test.js) --> | 10 (Please avoid writing new tests using video-test.js) --> |
11 <script src=video-test.js></script> | 11 <script src=video-test.js></script> |
12 <script src=media-file.js></script> | 12 <script src=media-file.js></script> |
13 <script src=media-controls.js></script> | 13 <script src=media-controls.js></script> |
14 <script> | 14 <script> |
15 var controls; | 15 var controls; |
16 | 16 |
17 function runTest() | 17 function runTest() |
18 { | 18 { |
19 video = document.getElementById("no-video-media"); | 19 video = document.getElementById("no-video-media"); |
(...skipping 25 matching lines...) Expand all Loading... |
45 <p>Test video element control visibility with multimodal input. The controls | 45 <p>Test video element control visibility with multimodal input. The controls |
46 should remain visible if the last input event was a mouse move over them.
</p> | 46 should remain visible if the last input event was a mouse move over them.
</p> |
47 <p>This test only runs in DRT!</p> | 47 <p>This test only runs in DRT!</p> |
48 | 48 |
49 <video id="no-video-media" controls loop oncanplaythrough="runTest()"></vide
o> | 49 <video id="no-video-media" controls loop oncanplaythrough="runTest()"></vide
o> |
50 <script> | 50 <script> |
51 setSrcById("no-video-media", findMediaFile("video", "content/test")); | 51 setSrcById("no-video-media", findMediaFile("video", "content/test")); |
52 </script> | 52 </script> |
53 </body> | 53 </body> |
54 </html> | 54 </html> |
OLD | NEW |