[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:54:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ae76f6f91a14b071e39904329e01d4fca1f3448d
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 2 20:52:13 2003 +0000

    	Fix for 3404452, paint errors on mezzoblue.com's links list.  There was a simple
    	math error in the invalidation rect computation.
    
            Reviewed by mjs
    
            * khtml/rendering/render_flow.cpp:
            (RenderFlow::repaint):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4924 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index b529091..44874a7 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-09-02  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3404452, paint errors on mezzoblue.com's links list.  There was a simple
+	math error in the invalidation rect computation.
+	
+        Reviewed by mjs
+
+        * khtml/rendering/render_flow.cpp:
+        (RenderFlow::repaint):
+        
 2003-09-01  John Sullivan  <sullivan at apple.com>
 
 	- WebCore part of fix for 3402489 -- REGRESSION (7B48-7B55): Some 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index b529091..44874a7 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-09-02  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3404452, paint errors on mezzoblue.com's links list.  There was a simple
+	math error in the invalidation rect computation.
+	
+        Reviewed by mjs
+
+        * khtml/rendering/render_flow.cpp:
+        (RenderFlow::repaint):
+        
 2003-09-01  John Sullivan  <sullivan at apple.com>
 
 	- WebCore part of fix for 3402489 -- REGRESSION (7B48-7B55): Some 
diff --git a/WebCore/khtml/rendering/render_flow.cpp b/WebCore/khtml/rendering/render_flow.cpp
index ce576ca..8c16313 100644
--- a/WebCore/khtml/rendering/render_flow.cpp
+++ b/WebCore/khtml/rendering/render_flow.cpp
@@ -250,7 +250,8 @@ void RenderFlow::repaint(bool immediate)
         if (firstLineBox() && firstLineBox()->topOverflow() < 0) {
             int ow = style() ? style()->outlineWidth() : 0;
             repaintRectangle(-ow, -ow+firstLineBox()->topOverflow(),
-                             overflowWidth(false)+ow*2, overflowHeight(false)+ow*2, immediate);
+                             overflowWidth(false)+ow*2,
+                             overflowHeight(false)+ow*2-firstLineBox()->topOverflow(), immediate);
         }
         else
             return RenderBox::repaint(immediate);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list