Title: [164891] trunk/Source/WebCore
Revision
164891
Author
[email protected]
Date
2014-02-28 15:38:08 -0800 (Fri, 28 Feb 2014)

Log Message

Turn off margin tiles on iOS
https://bugs.webkit.org/show_bug.cgi?id=129509
-and corresponding-
<rdar://problem/16200383>

Reviewed by Simon Fraser.

* page/FrameView.cpp:
(WebCore::FrameView::needsExtendedBackgroundRectForPainting):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164890 => 164891)


--- trunk/Source/WebCore/ChangeLog	2014-02-28 23:36:02 UTC (rev 164890)
+++ trunk/Source/WebCore/ChangeLog	2014-02-28 23:38:08 UTC (rev 164891)
@@ -1,3 +1,15 @@
+2014-02-28  Beth Dakin  <[email protected]>
+
+        Turn off margin tiles on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=129509
+        -and corresponding-
+        <rdar://problem/16200383>
+
+        Reviewed by Simon Fraser.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::needsExtendedBackgroundRectForPainting):
+
 2014-02-28  Zalan Bujtas  <[email protected]>
 
         Subpixel rendering: Add subpixel support to border type of double, groove, ridge, inset and outset.

Modified: trunk/Source/WebCore/page/FrameView.cpp (164890 => 164891)


--- trunk/Source/WebCore/page/FrameView.cpp	2014-02-28 23:36:02 UTC (rev 164890)
+++ trunk/Source/WebCore/page/FrameView.cpp	2014-02-28 23:38:08 UTC (rev 164891)
@@ -2462,6 +2462,11 @@
     // such as images, require extending the background rect to continue painting into the extended
     // region. This function finds out if it is necessary to extend the background rect for painting.
 
+#if PLATFORM(IOS)
+    // <rdar://problem/16201373>
+    return false;
+#endif
+
     if (!frame().settings().backgroundShouldExtendBeyondPage())
         return false;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to