Title: [88859] branches/safari-534-branch/Source/WebCore
Diff
Modified: branches/safari-534-branch/Source/WebCore/ChangeLog (88858 => 88859)
--- branches/safari-534-branch/Source/WebCore/ChangeLog 2011-06-14 22:54:04 UTC (rev 88858)
+++ branches/safari-534-branch/Source/WebCore/ChangeLog 2011-06-14 22:57:15 UTC (rev 88859)
@@ -1,3 +1,24 @@
+2011-06-14 Lucas Forschler <[email protected]>
+
+ Merged 88528.
+
+ 2011-06-09 Jer Noble <[email protected]>
+
+ Reviewed by Darin Adler.
+
+ REGRESSION: Vertical scroll bar appears when taking videos into full screen at jerryseinfeld.com
+ https://bugs.webkit.org/show_bug.cgi?id=62402
+
+ Sites are able to override the "overflow:hidden" rule for root full-screen nodes
+ simply by adding a "html {}" rule. Make this rule !important, and also make it apply
+ to root nodes who are merely ancestors of full-screen elements, to cover the case of
+ a root node containing an <iframe> whose contents have gone full-screen.
+
+ * css/fullscreen.css:
+ (:root:-webkit-full-screen-document:not(:-webkit-full-screen),
+ :root:-webkit-full-screen-ancestor): Apply the overflow rule to root elements
+ who are full-screen ancestors, and make them !important.
+
2011-06-02 Lucas Forschler <[email protected]>
Merged 88468.
Modified: branches/safari-534-branch/Source/WebCore/css/fullscreen.css (88858 => 88859)
--- branches/safari-534-branch/Source/WebCore/css/fullscreen.css 2011-06-14 22:54:04 UTC (rev 88858)
+++ branches/safari-534-branch/Source/WebCore/css/fullscreen.css 2011-06-14 22:57:15 UTC (rev 88859)
@@ -3,8 +3,8 @@
z-index:2147483647;
}
-:root:-webkit-full-screen-document:not(:-webkit-full-screen) {
- overflow:hidden;
+:root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full-screen-ancestor {
+ overflow:hidden !important;
}
:-webkit-full-screen-ancestor:not(iframe) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes