Title: [232208] trunk/Source/WebCore
Revision
232208
Author
commit-qu...@webkit.org
Date
2018-05-25 14:53:08 -0700 (Fri, 25 May 2018)

Log Message

Fullscreen element can be clipped by ancestor.
https://bugs.webkit.org/show_bug.cgi?id=185980
rdar://problem/40320006

Patch by Jeremy Jones <jere...@apple.com> on 2018-05-25
Reviewed by Jer Noble.

Adds style to fullscreen css to prevent the fullscreen element from being clipped by an ancestor element.

* css/fullscreen.css:
(:-webkit-full-screen-ancestor:not(iframe)):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (232207 => 232208)


--- trunk/Source/WebCore/ChangeLog	2018-05-25 21:49:01 UTC (rev 232207)
+++ trunk/Source/WebCore/ChangeLog	2018-05-25 21:53:08 UTC (rev 232208)
@@ -1,5 +1,18 @@
 2018-05-25  Jeremy Jones  <jere...@apple.com>
 
+        Fullscreen element can be clipped by ancestor.
+        https://bugs.webkit.org/show_bug.cgi?id=185980
+        rdar://problem/40320006
+
+        Reviewed by Jer Noble.
+
+        Adds style to fullscreen css to prevent the fullscreen element from being clipped by an ancestor element.
+
+        * css/fullscreen.css:
+        (:-webkit-full-screen-ancestor:not(iframe)):
+
+2018-05-25  Jeremy Jones  <jere...@apple.com>
+
         Use correct AVKit delegate for picture in picture failure.
         https://bugs.webkit.org/show_bug.cgi?id=185981
         rdar://problem/40549652

Modified: trunk/Source/WebCore/css/fullscreen.css (232207 => 232208)


--- trunk/Source/WebCore/css/fullscreen.css	2018-05-25 21:49:01 UTC (rev 232207)
+++ trunk/Source/WebCore/css/fullscreen.css	2018-05-25 21:53:08 UTC (rev 232208)
@@ -19,6 +19,7 @@
     -webkit-box-reflect: none !important;
     perspective: none !important;
     -webkit-transform-style: flat !important;
+    overflow: visible !important;
 }
 
 video:-webkit-full-screen, audio:-webkit-full-screen {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to