[Webkit-unassigned] [Bug 55077] Regression: Content not drawn when scrolling horizontally in an RTL page

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 7 14:24:43 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=55077





--- Comment #4 from Xiaomei Ji <xji at chromium.org>  2011-03-07 14:24:43 PST ---
The following seems fix the problem and the one reported in 55889.

Index: ScrollView.cpp
===================================================================
--- ScrollView.cpp      (revision 80210)
+++ ScrollView.cpp      (working copy)
@@ -980,7 +980,7 @@
     if (scrollX() < 0) {
         verticalOverhangRect.setWidth(-scrollX());
         verticalOverhangRect.setHeight(frameRect().height() - horizontalOverhan
gRect.height());
-        verticalOverhangRect.setX(frameRect().x());
+        verticalOverhangRect.setX(frameRect().x() + scrollX());
         if (horizontalOverhangRect.y() == frameRect().y())
             verticalOverhangRect.setY(frameRect().y() + horizontalOverhangRect.
height());
         else

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list