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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:45:33 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 1e0864252330357bd1ad3ea4eb576704cfc2f94b
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 28 00:45:44 2002 +0000

            * khtml/rendering/render_table.cpp: (RenderTable::addColInfo):
    	Fixed a > that should have been a < that prevented tables from
    	changing sizes when table minimum widths changed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2194 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 3d07ae5..9001ef0 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
 2002-09-27  Darin Adler  <darin at apple.com>
 
+        * khtml/rendering/render_table.cpp: (RenderTable::addColInfo):
+	Fixed a > that should have been a < that prevented tables from
+	changing sizes when table minimum widths changed.
+
+2002-09-27  Darin Adler  <darin at apple.com>
+
 	- fixed 2937198 -- Checkboxes and radiobuttons don't align with title control in forms
 
         * kwq/qt/qcheckbox.h: Add baselinePosition override.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 3d07ae5..9001ef0 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,11 @@
 2002-09-27  Darin Adler  <darin at apple.com>
 
+        * khtml/rendering/render_table.cpp: (RenderTable::addColInfo):
+	Fixed a > that should have been a < that prevented tables from
+	changing sizes when table minimum widths changed.
+
+2002-09-27  Darin Adler  <darin at apple.com>
+
 	- fixed 2937198 -- Checkboxes and radiobuttons don't align with title control in forms
 
         * kwq/qt/qcheckbox.h: Add baselinePosition override.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 3d07ae5..9001ef0 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,11 @@
 2002-09-27  Darin Adler  <darin at apple.com>
 
+        * khtml/rendering/render_table.cpp: (RenderTable::addColInfo):
+	Fixed a > that should have been a < that prevented tables from
+	changing sizes when table minimum widths changed.
+
+2002-09-27  Darin Adler  <darin at apple.com>
+
 	- fixed 2937198 -- Checkboxes and radiobuttons don't align with title control in forms
 
         * kwq/qt/qcheckbox.h: Add baselinePosition override.
diff --git a/WebCore/khtml/rendering/render_table.cpp b/WebCore/khtml/rendering/render_table.cpp
index 791b859..3904692 100644
--- a/WebCore/khtml/rendering/render_table.cpp
+++ b/WebCore/khtml/rendering/render_table.cpp
@@ -509,7 +509,7 @@ void RenderTable::addColInfo(int _startCol, int _colSpan,
 
 	changed = true;
     } else {
-	if (_minSize > col->min)
+	if (_minSize < col->min)
 	{
 	    if ( allowRecalc && col->minCell == _cell ) {
 		recalc = true;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list