[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:13:36 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit adbb2efe0d6f5dc05f4b31cc5e0316738cefde33
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 18 09:21:44 2003 +0000

    	Fix for 3487424, images not painting because of dropped layouts.  When replaced elements dirtied
    	themselves during line layout, they only needed to do a local dirty and not walk up the parent chain.
    
            Reviewed by mjs
    
            * khtml/rendering/bidi.cpp:
            (khtml::RenderBlock::layoutInlineChildren):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5570 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index b351397..e3f3166 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3487424, images not painting because of dropped layouts.  When replaced elements dirtied
+	themselves during line layout, they only needed to do a local dirty and not walk up the parent chain.
+	
+        Reviewed by mjs
+
+        * khtml/rendering/bidi.cpp:
+        (khtml::RenderBlock::layoutInlineChildren):
+
 2003-11-17  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Dave.
diff --git a/WebCore/khtml/rendering/bidi.cpp b/WebCore/khtml/rendering/bidi.cpp
index b63f543..28f6055 100644
--- a/WebCore/khtml/rendering/bidi.cpp
+++ b/WebCore/khtml/rendering/bidi.cpp
@@ -1299,7 +1299,7 @@ void RenderBlock::layoutInlineChildren(bool relayoutChildren)
             if(o->isReplaced() || o->isFloating() || o->isPositioned()) {
                 //kdDebug(6041) << "layouting replaced or floating child" << endl;
                 if (relayoutChildren || o->style()->width().isPercent() || o->style()->height().isPercent())
-                    o->setNeedsLayout(true);
+                    o->setChildNeedsLayout(true, false);
                 if (o->isPositioned())
                     o->containingBlock()->insertPositionedObject(o);
                 else

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list