Title: [96555] trunk/Source/WebKit2
- Revision
- 96555
- Author
- [email protected]
- Date
- 2011-10-03 16:11:29 -0700 (Mon, 03 Oct 2011)
Log Message
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):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (96554 => 96555)
--- trunk/Source/WebKit2/ChangeLog 2011-10-03 23:07:35 UTC (rev 96554)
+++ trunk/Source/WebKit2/ChangeLog 2011-10-03 23:11:29 UTC (rev 96555)
@@ -1,5 +1,18 @@
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-03 Anders Carlsson <[email protected]>
+
Remove custom scrollbar painting hooks
https://bugs.webkit.org/show_bug.cgi?id=69163
Modified: trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp (96554 => 96555)
--- trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp 2011-10-03 23:07:35 UTC (rev 96554)
+++ trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp 2011-10-03 23:11:29 UTC (rev 96555)
@@ -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