OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>media controls timeline</title> | 4 <title>media controls timeline</title> |
5 <script src="media-file.js"></script> | 5 <script src="media-file.js"></script> |
6 <script src="media-controls.js"></script> | 6 <script src="media-controls.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 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <video controls></video> | 12 <video controls></video> |
13 <script> | 13 <script> |
14 findMediaElement(); | 14 findMediaElement(); |
15 video.src = findMediaFile("video", "content/test"); | 15 video.src = findMediaFile("video", "content/test"); |
16 waitForEvent("loadedmetadata", function() | 16 waitForEvent("loadedmetadata", function() |
17 { | 17 { |
18 testExpected("video.currentTime", 0); | 18 testExpected("video.currentTime", 0); |
19 testExpected("video.seeking", false); | 19 testExpected("video.seeking", false); |
20 | 20 |
21 // click the middle of the timeline | 21 // click the middle of the timeline |
22 var coords = mediaControlsButtonCoordinates(video, "timeline"); | 22 var coords = mediaControlsButtonCoordinates(video, "timeline"); |
23 eventSender.mouseMoveTo(coords[0], coords[1]); | 23 eventSender.mouseMoveTo(coords[0], coords[1]); |
24 eventSender.mouseDown(); | 24 eventSender.mouseDown(); |
25 eventSender.mouseUp(); | 25 eventSender.mouseUp(); |
26 | 26 |
27 testExpected("video.currentTime / video.duration", 0.4, '>'); | 27 testExpected("video.currentTime / video.duration", 0.4, '>'); |
28 testExpected("video.currentTime / video.duration", 0.6, '<'); | 28 testExpected("video.currentTime / video.duration", 0.6, '<'); |
29 testExpected("video.seeking", true); | 29 testExpected("video.seeking", true); |
30 | 30 |
31 endTest(); | 31 endTest(); |
32 }); | 32 }); |
33 </script> | 33 </script> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |