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

Side by Side Diff: LayoutTests/media/audio-controls-do-not-fade-out.html

Issue 296743007: Prevent media controls from auto-hiding on audio-only content. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/html/shadow/MediaControls.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <script src="media-controls.js"></script>
1 <body> 2 <body>
2 <p> 3 <p>
3 This tests that audio controls do not fade out when the audio is playing. 4 This tests that audio controls do not fade out when the audio is playing.
4 </p> 5 </p>
5 <p id="result"> 6 <p id="result">
6 FAIL: Test did not run. 7 FAIL: Test did not run.
7 </p> 8 </p>
8 <audio id="audio" controls autoplay onplaying="playing()" src="content/silence.w av"></audio><br> 9 <audio id="audio" controls autoplay src="content/test.oga"></audio><br>
acolwell GONE FROM CHROMIUM 2014/05/22 00:17:02 Changed to a file longer than 3 seconds so the con
9 <script> 10 <script>
10 if (window.testRunner) { 11 if (window.testRunner) {
11 testRunner.waitUntilDone(); 12 testRunner.waitUntilDone();
12 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
13 } 14 }
14 15
15 function playing() { 16 document.getElementById("audio").addEventListener("timeupdate", function(e)
16 setTimeout(function() { 17 {
17 var controls = internals.shadowRoot(document.getElementById("audio") ).firstChild.firstChild; 18 if (e.target.currentTime < 4) {
18 var opacity = getComputedStyle(controls).opacity; 19 return;
19 document.getElementById("result").innerText = opacity < 1 ? "FAIL" : "PASS"; 20 }
20 testRunner.notifyDone(); 21 var controls = mediaControlsElement(internals.shadowRoot(e.target).first Child, "-webkit-media-controls-panel");
acolwell GONE FROM CHROMIUM 2014/05/22 00:17:02 The old code was looking at the wrong element whic
philipj_slow 2014/05/22 11:51:39 Interesting. I can see three other tests using the
21 }, 250) 22 var opacity = getComputedStyle(controls).opacity;
22 } 23 document.getElementById("result").innerText = opacity < 1 ? "FAIL" : "PA SS";
24 testRunner.notifyDone();
25 });
23 </script> 26 </script>
24 </body> 27 </body>
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/shadow/MediaControls.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698