Title: [149237] trunk/Source/WebCore
Revision
149237
Author
[email protected]
Date
2013-04-27 10:08:17 -0700 (Sat, 27 Apr 2013)

Log Message

REGRESSION (r147261): Audio controls background not displayed after loading audio file
https://bugs.webkit.org/show_bug.cgi?id=115221

Reviewed by Darin Adler.

As in r147261, set a flex-shrink: 0 to avoid shrinking the media controls panel
below the specified height.

No new tests; fixes the media/media-document-audio-repaint.html test.

* css/mediaControlsQuickTime.css:
(audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149236 => 149237)


--- trunk/Source/WebCore/ChangeLog	2013-04-27 06:43:33 UTC (rev 149236)
+++ trunk/Source/WebCore/ChangeLog	2013-04-27 17:08:17 UTC (rev 149237)
@@ -1,3 +1,18 @@
+2013-04-27  Jer Noble  <[email protected]>
+
+        REGRESSION (r147261): Audio controls background not displayed after loading audio file
+        https://bugs.webkit.org/show_bug.cgi?id=115221
+
+        Reviewed by Darin Adler.
+
+        As in r147261, set a flex-shrink: 0 to avoid shrinking the media controls panel
+        below the specified height.
+
+        No new tests; fixes the media/media-document-audio-repaint.html test.
+
+        * css/mediaControlsQuickTime.css:
+        (audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel):
+
 2013-04-26  Jer Noble  <[email protected]>
 
         Video playback has corruption on the edges of the video

Modified: trunk/Source/WebCore/css/mediaControlsQuickTime.css (149236 => 149237)


--- trunk/Source/WebCore/css/mediaControlsQuickTime.css	2013-04-27 06:43:33 UTC (rev 149236)
+++ trunk/Source/WebCore/css/mediaControlsQuickTime.css	2013-04-27 17:08:17 UTC (rev 149237)
@@ -34,6 +34,7 @@
     -webkit-appearance: media-controls-background;
     overflow: visible;
     height: 25px;
+    -webkit-flex-shrink: 0;
 }
 
 video:-webkit-full-page-media::-webkit-media-controls-panel {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to