Title: [98136] branches/safari-534.52-branch/Source/WebKit2

Diff

Modified: branches/safari-534.52-branch/Source/WebKit2/ChangeLog (98135 => 98136)


--- branches/safari-534.52-branch/Source/WebKit2/ChangeLog	2011-10-21 20:48:50 UTC (rev 98135)
+++ branches/safari-534.52-branch/Source/WebKit2/ChangeLog	2011-10-21 20:50:34 UTC (rev 98136)
@@ -1,5 +1,21 @@
 2011-10-21  Lucas Forschler  <[email protected]>
 
+    Merge 96555
+
+    2011-10-03  Anders Carlsson  <[email protected]>
+
+            Content area does not return to the correct position after rubberbanding
+            https://bugs.webkit.org/show_bug.cgi?id=69302
+            <rdar://problem/10102886>
+
+            Reviewed by Sam Weinig.
+
+            Make sure to schedule a display after adding to the dirty region.
+
+            * WebProcess/WebPage/DrawingAreaImpl.cpp:
+            (WebKit::DrawingAreaImpl::scroll):
+2011-10-21  Lucas Forschler  <[email protected]>
+
     Merge 94454
 
     2011-09-02  Ada Chan  <[email protected]>

Modified: branches/safari-534.52-branch/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp (98135 => 98136)


--- branches/safari-534.52-branch/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp	2011-10-21 20:48:50 UTC (rev 98135)
+++ branches/safari-534.52-branch/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp	2011-10-21 20:50:34 UTC (rev 98136)
@@ -147,6 +147,7 @@
     Region scrollRepaintRegion = subtract(scrollRect, translate(scrollRect, scrollOffset));
 
     m_dirtyRegion.unite(scrollRepaintRegion);
+    scheduleDisplay();
 
     m_scrollRect = scrollRect;
     m_scrollOffset += scrollOffset;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to