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

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

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>media controls volume slider keyboard navigation</title> 4 <title>media controls volume slider keyboard navigation</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 <audio controls></audio> 12 <audio controls></audio>
13 <script> 13 <script>
14 findMediaElement(); 14 findMediaElement();
15 audio.src = findMediaFile("audio", "content/test"); 15 audio.src = findMediaFile("audio", "content/test");
16 testExpected("audio.volume", 1); 16 testExpected("audio.volume", 1);
17 waitForEvent("loadedmetadata", function() 17 waitForEvent("loadedmetadata", function()
(...skipping 16 matching lines...) Expand all
34 34
35 // 'End' sets maximum volume (1). 35 // 'End' sets maximum volume (1).
36 eventSender.keyDown('end'); 36 eventSender.keyDown('end');
37 testExpected("audio.volume", 1); 37 testExpected("audio.volume", 1);
38 38
39 waitForEventAndEnd("volumechange"); 39 waitForEventAndEnd("volumechange");
40 }); 40 });
41 </script> 41 </script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698