Title: [88544] trunk/Source/WebCore
- Revision
- 88544
- Author
- [email protected]
- Date
- 2011-06-10 09:52:01 -0700 (Fri, 10 Jun 2011)
Log Message
2011-06-10 Darin Adler <[email protected]>
Reviewed by Eric Carlson.
REGRESSION: Full screen video HUD is positioned too low for standalone video documents
https://bugs.webkit.org/show_bug.cgi?id=62463
No test because we don't currently have machinery for testing fullscreen.
* css/fullscreen.css: Removed rule that said bottom: 0px for the control panel
for full page media in full screen mode. This is not needed because the control
panel for full screen mode already has style rules to set its vertical position.
(:-webkit-full-screen-ancestor:not(iframe)): Fixed typo where it said
-webkit-tranform. This will fix a potential problem where fullscreen would
malfunction on a page that had a media element inside a transform.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (88543 => 88544)
--- trunk/Source/WebCore/ChangeLog 2011-06-10 16:06:53 UTC (rev 88543)
+++ trunk/Source/WebCore/ChangeLog 2011-06-10 16:52:01 UTC (rev 88544)
@@ -1,3 +1,19 @@
+2011-06-10 Darin Adler <[email protected]>
+
+ Reviewed by Eric Carlson.
+
+ REGRESSION: Full screen video HUD is positioned too low for standalone video documents
+ https://bugs.webkit.org/show_bug.cgi?id=62463
+
+ No test because we don't currently have machinery for testing fullscreen.
+
+ * css/fullscreen.css: Removed rule that said bottom: 0px for the control panel
+ for full page media in full screen mode. This is not needed because the control
+ panel for full screen mode already has style rules to set its vertical position.
+ (:-webkit-full-screen-ancestor:not(iframe)): Fixed typo where it said
+ -webkit-tranform. This will fix a potential problem where fullscreen would
+ malfunction on a page that had a media element inside a transform.
+
2011-06-10 Sergio Villar Senin <[email protected]>
Reviewed by Gustavo Noronha Silva.
Modified: trunk/Source/WebCore/css/fullscreen.css (88543 => 88544)
--- trunk/Source/WebCore/css/fullscreen.css 2011-06-10 16:06:53 UTC (rev 88543)
+++ trunk/Source/WebCore/css/fullscreen.css 2011-06-10 16:52:01 UTC (rev 88544)
@@ -1,16 +1,16 @@
:-webkit-full-screen {
background-color: white;
- z-index:2147483647;
+ z-index: 2147483647;
}
:root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full-screen-ancestor {
- overflow:hidden !important;
+ overflow: hidden !important;
}
:-webkit-full-screen-ancestor:not(iframe) {
z-index: auto !important;
opacity: 1 !important;
- -webkit-tranform: none !important;
+ -webkit-transform: none !important;
}
video:-webkit-full-screen {
@@ -39,8 +39,3 @@
left: 0 !important;
top: 0 !important;
}
-
-video:-webkit-full-page-media:-webkit-full-screen::-webkit-media-controls-panel {
- bottom: 0px;
-}
-
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes