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

Side by Side Diff: LayoutTests/media/audio-controls-computed-display.html

Issue 1166743004: Force display:none for audio elements with no controls attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>&lt;audio> without controls has display:none irrespective of author CSS</ title>
3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script>
5 <style>
6 audio {
7 display: inline !important;
8 }
9 </style>
10 <div id="log"></div>
11 <script>
12 test(function() {
13 var audio = document.createElement('audio');
14 document.body.appendChild(audio);
15 assert_equals(audio.clientWidth, 0);
16 assert_equals(getComputedStyle(audio).display, "none");
17 audio.controls = true;
18 assert_equals(audio.clientWidth, 300);
19 assert_equals(getComputedStyle(audio).display, "inline");
20 audio.controls = false;
21 assert_equals(audio.clientWidth, 0);
22 assert_equals(getComputedStyle(audio).display, "none");
23 });
24 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/label/label-contains-other-interactive-content.html ('k') | Source/core/css/mediaControls.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698