[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 08:52:24 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 56592f937d8b62b2594082a851ed447fb992ee87
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 23 17:58:01 2004 +0000

    	Fix for 3735084 and 3737209, when you can find no line boxes in your previous sibling, the line box to dirty
    	should be the *first* line box and not the last.
    
            Reviewed by kocienda
    
            * khtml/rendering/render_flow.cpp:
            (RenderFlow::dirtyLinesFromChangedChild):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@7114 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 80e2d5b..5ffac1e 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2004-07-23  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3735084 and 3737209, when you can find no line boxes in your previous sibling, the line box to dirty
+	should be the *first* line box and not the last.
+	
+        Reviewed by kocienda
+
+        * khtml/rendering/render_flow.cpp:
+        (RenderFlow::dirtyLinesFromChangedChild):
+
 2004-07-23  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by John
diff --git a/WebCore/khtml/rendering/render_flow.cpp b/WebCore/khtml/rendering/render_flow.cpp
index ab6021a..baceafe 100644
--- a/WebCore/khtml/rendering/render_flow.cpp
+++ b/WebCore/khtml/rendering/render_flow.cpp
@@ -241,7 +241,7 @@ void RenderFlow::dirtyLinesFromChangedChild(RenderObject* child, bool adding)
             break;
     }
     if (!box)
-        box = lastLineBox()->root();
+        box = firstLineBox()->root();
 
     // If we found a line box, then dirty it.
     if (box) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list