Title: [90797] trunk/Source/WebCore
Revision
90797
Author
jer.no...@apple.com
Date
2011-07-11 17:30:54 -0700 (Mon, 11 Jul 2011)

Log Message

HTML5 video controller in fullscreen is partly off-screen (at least on youtube) using ClickToFlash
https://bugs.webkit.org/show_bug.cgi?id=64327

Reviewed by Darin Adler.

No new tests; no change in functionality, so covered by existing tests.

Make the rules from fullscreenQuickTime.css !important so they are not overridden
by page authors.

* css/fullscreenQuickTime.css:
(video:-webkit-full-screen::-webkit-media-controls-panel):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90796 => 90797)


--- trunk/Source/WebCore/ChangeLog	2011-07-12 00:10:19 UTC (rev 90796)
+++ trunk/Source/WebCore/ChangeLog	2011-07-12 00:30:54 UTC (rev 90797)
@@ -1,3 +1,18 @@
+2011-07-11  Jer Noble  <jer.no...@apple.com>
+
+        HTML5 video controller in fullscreen is partly off-screen (at least on youtube) using ClickToFlash
+        https://bugs.webkit.org/show_bug.cgi?id=64327
+
+        Reviewed by Darin Adler.
+
+        No new tests; no change in functionality, so covered by existing tests.
+
+        Make the rules from fullscreenQuickTime.css !important so they are not overridden
+        by page authors.
+
+        * css/fullscreenQuickTime.css:
+        (video:-webkit-full-screen::-webkit-media-controls-panel):
+
 2011-07-11  Levi Weintraub  <le...@chromium.org>
 
         Switch lineTop and lineBottom to new layout types

Modified: trunk/Source/WebCore/css/fullscreenQuickTime.css (90796 => 90797)


--- trunk/Source/WebCore/css/fullscreenQuickTime.css	2011-07-12 00:10:19 UTC (rev 90796)
+++ trunk/Source/WebCore/css/fullscreenQuickTime.css	2011-07-12 00:30:54 UTC (rev 90797)
@@ -25,16 +25,16 @@
 /* alternate media controls - Extend fullscreen.css */
 
 video:-webkit-full-screen::-webkit-media-controls-panel {
-    -webkit-box-align: start;
-    -webkit-box-pack: end;    
-    -webkit-appearance: none;
+    -webkit-box-align: start !important;
+    -webkit-box-pack: end !important;
+    -webkit-appearance: none !important;
 
-    bottom: 50px;
-    left: 50%;
-    margin-left: -220px;
-    padding: 12px 0 0 10px;
-    width: 430px;
-    height: 48px;
+    bottom: 50px !important;
+    left: 50% !important;
+    margin-left: -220px !important;
+    padding: 12px 0 0 10px !important;
+    width: 430px !important;
+    height: 48px !important;
     
     background-image: -webkit-gradient(
         linear,
@@ -46,16 +46,16 @@
         color-stop(0.366, rgba(25, 25, 25, .97)),
         color-stop(0.366, rgba(12, 12, 12, .97)),
         color-stop(1, rgba(19, 19, 19, .97))
-    );
+    ) !important;
 
     -webkit-box-shadow: 
         inset 0 -1px 1px rgba(0, 0, 0, 0.5),
         inset 0  1px 0 0px   rgba(255, 255, 255, 0.15),
         inset 0 -1px 0 0px   rgba(202, 202, 202, 0.09),
         0  0   0 1px rgba(0, 0, 0, 0.5);
-    -webkit-border-radius: 8px;
+    -webkit-border-radius: 8px !important;
 
-    -webkit-transition: opacity 0.3s linear;
+    -webkit-transition: opacity 0.3s linear !important;
 }
 
 video:-webkit-animating-full-screen-transition::-webkit-media-controls-panel {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to