Title: [172108] branches/safari-600.1-branch/Source/WebCore
Revision
172108
Author
lforsch...@apple.com
Date
2014-08-05 16:38:06 -0700 (Tue, 05 Aug 2014)

Log Message

Merged r172053.  <rdar://problem/17876385>

Modified Paths

Diff

Modified: branches/safari-600.1-branch/Source/WebCore/ChangeLog (172107 => 172108)


--- branches/safari-600.1-branch/Source/WebCore/ChangeLog	2014-08-05 23:36:22 UTC (rev 172107)
+++ branches/safari-600.1-branch/Source/WebCore/ChangeLog	2014-08-05 23:38:06 UTC (rev 172108)
@@ -1,5 +1,21 @@
 2014-08-05  Lucas Forschler  <lforsch...@apple.com>
 
+        Merge r172053
+
+    2014-08-05  Antti Koivisto  <an...@apple.com>
+
+            REGRESSION: Extremely flashy scrolling while a page is still loading (because of flush throttling)
+            https://bugs.webkit.org/show_bug.cgi?id=135603
+            <rdar://problem/17876385>
+
+            This hit ASSERT(frame().isMainFrame()) in FrameView::updateLayerFlushThrottling
+            running scrollbars/scrollbar-iframe-click-does-not-blur-content.html and a few other tests.
+
+            * page/FrameView.cpp:
+            (WebCore::FrameView::setWasScrolledByUser): Only invoke updateLayerFlushThrottling for the main frame.
+
+2014-08-05  Lucas Forschler  <lforsch...@apple.com>
+
         Merge r172039
 
     2014-08-05  Antti Koivisto  <an...@apple.com>

Modified: branches/safari-600.1-branch/Source/WebCore/page/FrameView.cpp (172107 => 172108)


--- branches/safari-600.1-branch/Source/WebCore/page/FrameView.cpp	2014-08-05 23:36:22 UTC (rev 172107)
+++ branches/safari-600.1-branch/Source/WebCore/page/FrameView.cpp	2014-08-05 23:38:06 UTC (rev 172108)
@@ -3569,7 +3569,8 @@
     if (m_wasScrolledByUser == wasScrolledByUser)
         return;
     m_wasScrolledByUser = wasScrolledByUser;
-    updateLayerFlushThrottling();
+    if (frame().isMainFrame())
+        updateLayerFlushThrottling();
     adjustTiledBackingCoverage();
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to