Title: [179127] branches/safari-600.1.4.15-branch/Source/WebCore
Revision
179127
Author
[email protected]
Date
2015-01-26 11:38:52 -0800 (Mon, 26 Jan 2015)

Log Message

Merged r176384.  rdar://problem/19432691

Modified Paths

Diff

Modified: branches/safari-600.1.4.15-branch/Source/WebCore/ChangeLog (179126 => 179127)


--- branches/safari-600.1.4.15-branch/Source/WebCore/ChangeLog	2015-01-26 19:38:48 UTC (rev 179126)
+++ branches/safari-600.1.4.15-branch/Source/WebCore/ChangeLog	2015-01-26 19:38:52 UTC (rev 179127)
@@ -1,5 +1,25 @@
 2015-01-26  David Kilzer  <[email protected]>
 
+        Merge r176384.
+
+    2014-11-20  Antti Koivisto  <[email protected]>
+
+        REGRESSION (r172854): Web Viewer in FileMaker does not render a Base64 encoded animated-GIF
+        https://bugs.webkit.org/show_bug.cgi?id=138807
+        <rdar://problem/18829540>
+
+        Reviewed by Simon Fraser.
+
+        Animation gets paused because WebKit thinks the GIF is outside of the view.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::windowClipRect):
+
+        We need to convert to window coordinates in paintsEntireContents mode too so these functions are consistent.
+        This matters with some WK1 API clients.
+
+2015-01-26  David Kilzer  <[email protected]>
+
         Merge r172854.
 
     2014-08-21  Antti Koivisto  <[email protected]>

Modified: branches/safari-600.1.4.15-branch/Source/WebCore/page/FrameView.cpp (179126 => 179127)


--- branches/safari-600.1.4.15-branch/Source/WebCore/page/FrameView.cpp	2015-01-26 19:38:48 UTC (rev 179126)
+++ branches/safari-600.1.4.15-branch/Source/WebCore/page/FrameView.cpp	2015-01-26 19:38:52 UTC (rev 179127)
@@ -3139,7 +3139,7 @@
     ASSERT(frame().view() == this);
 
     if (paintsEntireContents())
-        return IntRect(IntPoint(), totalContentsSize());
+        return contentsToWindow(IntRect(IntPoint(), totalContentsSize()));
 
     // Set our clip rect to be our contents.
     IntRect clipRect;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to