[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:35:33 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8907ef48d14472e8f027bbb9ebdb4bbb962bf959
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 21 21:48:17 2004 +0000

    	Remove the (incorrect) restriction on table flexing that required the cell to have a fixed width.  In
    	reality, the style on the cell is completely irrelevant.
    
            Reviewed by kocienda
    
            * khtml/rendering/render_table.cpp:
            (RenderTable::layout):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6442 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 830e692..f8bdd3a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,15 @@
 2004-04-21  David Hyatt  <hyatt at apple.com>
 
+	Remove the (incorrect) restriction on table flexing that required the cell to have a fixed width.  In
+	reality, the style on the cell is completely irrelevant.
+	
+        Reviewed by kocienda
+
+        * khtml/rendering/render_table.cpp:
+        (RenderTable::layout):
+
+2004-04-21  David Hyatt  <hyatt at apple.com>
+
 	Make sure cells that get flexed vertically in tables don't check text children when looking for 
 	percentage height children.
 	
diff --git a/WebCore/khtml/rendering/render_table.cpp b/WebCore/khtml/rendering/render_table.cpp
index 8590743..a3ff979 100644
--- a/WebCore/khtml/rendering/render_table.cpp
+++ b/WebCore/khtml/rendering/render_table.cpp
@@ -308,7 +308,7 @@ void RenderTable::layout()
         if (c->isTableCell()) {
             RenderTableCell* cell = static_cast<RenderTableCell*>(c);
             int cellHeight = cell->getCellPercentageHeight();
-            if (cellHeight && cell->style()->height().isFixed())
+            if (cellHeight)
                 th = h.width(cellHeight);
         }
         else  {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list