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

Side by Side Diff: LayoutTests/media/controls-volume-slider.html

Issue 217103004: Ignore MediaController in the muted/volume controls logic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: repaint in updateVolume Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>media controls volume slider</title>
5 <script src="media-file.js"></script>
6 <script src="media-controls.js"></script>
7 <script src="video-test.js"></script>
8 </head>
9 <body>
10 <audio controls></audio>
11 <script>
12 findMediaElement();
13 audio.src = findMediaFile("audio", "content/test");
14 testExpected("audio.volume", 1);
15 waitForEvent("loadedmetadata", function()
16 {
17 // click the middle of the volume slider
18 var coords = mediaControlsButtonCoordinates(audio, "volume-slide r");
19 eventSender.mouseMoveTo(coords[0], coords[1]);
20 eventSender.mouseDown();
21 eventSender.mouseUp();
22
23 testExpected("audio.volume", 0.4, '>');
24 testExpected("audio.volume", 0.6, '<');
25 waitForEventAndEnd("volumechange");
26 });
27 </script>
28 </body>
29 </html>
OLDNEW
« no previous file with comments | « LayoutTests/media/controls-mute-with-controller-expected.html ('k') | LayoutTests/media/controls-volume-slider-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698