Title: [148065] trunk/Source/WebCore
Revision
148065
Author
[email protected]
Date
2013-04-09 16:57:39 -0700 (Tue, 09 Apr 2013)

Log Message

REGRESSION (r123837): Full screen transition is broken at apple.com
https://bugs.webkit.org/show_bug.cgi?id=95650

Reviewed by Simon Fraser.

Cancel any outstanding animations on <video> elements as they enter full screen, so as to
not confuse the WebKit/WebKit2 full screen window animation about the starting and destination
screen rects.

* css/fullscreen.css:
(video:-webkit-full-screen, audio:-webkit-full-screen):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148064 => 148065)


--- trunk/Source/WebCore/ChangeLog	2013-04-09 23:52:23 UTC (rev 148064)
+++ trunk/Source/WebCore/ChangeLog	2013-04-09 23:57:39 UTC (rev 148065)
@@ -1,5 +1,19 @@
 2013-04-09  Jer Noble  <[email protected]>
 
+        REGRESSION (r123837): Full screen transition is broken at apple.com
+        https://bugs.webkit.org/show_bug.cgi?id=95650
+
+        Reviewed by Simon Fraser.
+
+        Cancel any outstanding animations on <video> elements as they enter full screen, so as to
+        not confuse the WebKit/WebKit2 full screen window animation about the starting and destination
+        screen rects.
+
+        * css/fullscreen.css:
+        (video:-webkit-full-screen, audio:-webkit-full-screen):
+
+2013-04-09  Jer Noble  <[email protected]>
+
         hang in mediaSelectionGroupForMediaCharacteristic
         https://bugs.webkit.org/show_bug.cgi?id=114054
 

Modified: trunk/Source/WebCore/css/fullscreen.css (148064 => 148065)


--- trunk/Source/WebCore/css/fullscreen.css	2013-04-09 23:52:23 UTC (rev 148064)
+++ trunk/Source/WebCore/css/fullscreen.css	2013-04-09 23:57:39 UTC (rev 148065)
@@ -29,6 +29,7 @@
     width: 100% !important;
     -webkit-flex: 1 !important;
     display: block !important;
+    -webkit-transition: none !important;
 }
 
 :-webkit-full-screen video:hover {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to