OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Overflow menu displays the correct text.</title> | 2 <title>Overflow menu displays the correct text.</title> |
3 <script src="../resources/testharness.js"></script> | 3 <script src="../resources/testharness.js"></script> |
4 <script src="../resources/testharnessreport.js"></script> | 4 <script src="../resources/testharnessreport.js"></script> |
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 <script src="overflow-menu.js"></script> | 7 <script src="overflow-menu.js"></script> |
8 | 8 |
9 <!--Padding ensures the overflow menu is visible for the tests. --> | 9 <!--Padding ensures the overflow menu is visible for the tests. --> |
10 <body style="padding-top: 200px; padding-left: 100px"> | 10 <body style="padding-top: 200px; padding-left: 100px"> |
11 <video controls></video> | 11 <video controls></video> |
12 <script> | 12 <script> |
13 async_test(function(t) { | 13 async_test(function(t) { |
| 14 if (window.internals) |
| 15 window.internals.runtimeFlags.mediaControlsDownloadButtonEnabled = true; |
14 // Set up video | 16 // Set up video |
15 var video = document.querySelector("video"); | 17 var video = document.querySelector("video"); |
16 video.src = findMediaFile("video", "content/test"); | 18 video.src = findMediaFile("video", "content/test"); |
17 // Add captions | 19 // Add captions |
18 var track = video.addTextTrack("captions"); | 20 var track = video.addTextTrack("captions"); |
19 // Pretend we have a cast device | 21 // Pretend we have a cast device |
20 internals.mediaPlayerRemoteRouteAvailabilityChanged(video, true); | 22 internals.mediaPlayerRemoteRouteAvailabilityChanged(video, true); |
21 | 23 |
22 video.onloadeddata = t.step_func_done(function() { | 24 video.onloadeddata = t.step_func_done(function() { |
23 window.internals.runtimeFlags.MediaControlsDownloadButton = true; | |
24 var overflowList = getOverflowList(video); | 25 var overflowList = getOverflowList(video); |
25 var children = overflowList.children; | 26 var children = overflowList.children; |
26 // Ensure that all of the buttons are visible in the right order | 27 // Ensure that all of the buttons are visible in the right order |
27 for (var i = 0; i < children.length; i++) { | 28 for (var i = 0; i < children.length; i++) { |
28 var child = children[i]; | 29 var child = children[i]; |
29 var innerButton = child.children[0]; | 30 var innerButton = child.children[0]; |
30 assert_equals(child.textContent, overflowMenuText[i]); | 31 assert_equals(child.textContent, overflowMenuText[i]); |
31 } | 32 } |
32 }); | 33 }); |
33 }); | 34 }); |
34 </script> | 35 </script> |
35 </body> | 36 </body> |
OLD | NEW |