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

Side by Side Diff: third_party/WebKit/LayoutTests/media/audio-controls-do-not-fade-out.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, 6 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 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 1 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
2 (Please avoid writing new tests using video-test.js) --> 2 (Please avoid writing new tests using video-test.js) -->
3 <script src="video-test.js"></script> 3 <script src="video-test.js"></script>
4 <script src="media-controls.js"></script> 4 <script src="media-controls.js"></script>
5 <body> 5 <body>
6 <p> 6 <p>
7 This tests that audio controls do not fade out when the audio is playing. 7 This tests that audio controls do not fade out when the audio is playing.
8 </p> 8 </p>
9 <audio id="audio" controls autoplay src="content/test.oga"></audio> 9 <audio id="audio" controls autoplay src="content/test.oga"></audio>
10 <script> 10 <script>
11 var controls; 11 var controls;
(...skipping 10 matching lines...) Expand all
22 { 22 {
23 controls = mediaControlsButton(audio, "panel"); 23 controls = mediaControlsButton(audio, "panel");
24 testExpected("getComputedStyle(controls).opacity", 1); 24 testExpected("getComputedStyle(controls).opacity", 1);
25 25
26 consoleWrite(""); 26 consoleWrite("");
27 endTest(); 27 endTest();
28 }, audio); 28 }, audio);
29 }); 29 });
30 </script> 30 </script>
31 </body> 31 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698