[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:43:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5b879438e340e54a4ac0167592ee12a71c1b9d52
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 3 22:03:54 2003 +0000

    	Fix for 3259647, crash when printing a table page.  This is fixed
    	on the KDE KHTML trunk.  The loop shouldn't be broken out of
    	when you have column elements so that all sections can recalc
    	their cell grids as needed.
    
            Reviewed by kocienda
    
            * khtml/rendering/render_table.cpp:
            (RenderTable::recalcSections):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4476 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 417aa9d..9b7eb03 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,15 @@
+2003-06-03  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3259647, crash when printing a table page.  This is fixed
+	on the KDE KHTML trunk.  The loop shouldn't be broken out of
+	when you have column elements so that all sections can recalc
+	their cell grids as needed.
+	
+        Reviewed by kocienda
+
+        * khtml/rendering/render_table.cpp:
+        (RenderTable::recalcSections):
+
 === Safari-82 ===
 
 2003-06-03  Richard Williamson   <rjw at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 417aa9d..9b7eb03 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-06-03  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3259647, crash when printing a table page.  This is fixed
+	on the KDE KHTML trunk.  The loop shouldn't be broken out of
+	when you have column elements so that all sections can recalc
+	their cell grids as needed.
+	
+        Reviewed by kocienda
+
+        * khtml/rendering/render_table.cpp:
+        (RenderTable::recalcSections):
+
 === Safari-82 ===
 
 2003-06-03  Richard Williamson   <rjw at apple.com>
diff --git a/WebCore/khtml/rendering/render_table.cpp b/WebCore/khtml/rendering/render_table.cpp
index 41e4462..e284be4 100644
--- a/WebCore/khtml/rendering/render_table.cpp
+++ b/WebCore/khtml/rendering/render_table.cpp
@@ -572,7 +572,7 @@ void RenderTable::recalcSections()
 
     RenderObject *child = firstChild();
     // We need to get valid pointers to caption, head, foot and firstbody again
-    while (child && !has_col_elems) {
+    while (child) {
 	switch (child->style()->display()) {
 	case TABLE_CAPTION:
 	    if (!tCaption) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list