Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: LayoutTests/media/video-controls-muted-video-can-unmute.html

Issue 1156993013: New media playback UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: minor decrufting. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <video controls></video> 1 <video controls></video>
2 <p>Test 'muted' attribute<p> 2 <p>Test that muted video has an unmute button.<p>
3 <script src=media-file.js></script> 3 <script src=media-file.js></script>
4 <script src=video-test.js></script> 4 <script src=video-test.js></script>
5 <script src=media-controls.js></script>
5 <script> 6 <script>
6 testExpected("video.muted", false);
7 run("video.muted = true"); 7 run("video.muted = true");
8 testExpected("video.muted", true);
9 video.src = findMediaFile("video", "content/test"); 8 video.src = findMediaFile("video", "content/test");
10 run("video.load()"); 9 run("video.load()");
11 waitForEvent("canplaythrough", function () { 10 waitForEvent("canplaythrough", function () {
12 testExpected("video.muted", true); 11 testExpected("video.muted", true);
13 run("video.muted = false"); 12 muteButton = mediaControlsButton(video, "mute-button");
14 testExpected("video.muted", false); 13 // Make sure that the mute button is visible.
14 testExpected("getComputedStyle(muteButton).display", "none", '!=');
15 endTest(); 15 endTest();
16 }); 16 });
17 </script> 17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698