[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:06:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 878ccf1e5e66418d7777283554c590abe91ea88a
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 22 01:32:46 2002 +0000

    	Stop table cells from repainting the whole table when they
    	get a repaint.  Gives another big boost to link rollover
    	performance when links' containing blocks are table cells.
    
            * khtml/rendering/render_table.cpp:
            (RenderTableCell::repaint):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2815 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 31e16b7..b45119c 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,14 @@
 2002-11-21  David Hyatt  <hyatt at apple.com>
 
+	Stop table cells from repainting the whole table when they
+	get a repaint.  Gives another big boost to link rollover
+	performance when links' containing blocks are table cells.
+	
+        * khtml/rendering/render_table.cpp:
+        (RenderTableCell::repaint):
+
+2002-11-21  David Hyatt  <hyatt at apple.com>
+
 	Fix <font> so that behaves just like <i>, <b>, etc. Stop
 	the (incorrect) allowance of blocks inside <font> tags.
 	This fixes the mispositioning on avoyagetoarcturus.blogspot.com
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 31e16b7..b45119c 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,14 @@
 2002-11-21  David Hyatt  <hyatt at apple.com>
 
+	Stop table cells from repainting the whole table when they
+	get a repaint.  Gives another big boost to link rollover
+	performance when links' containing blocks are table cells.
+	
+        * khtml/rendering/render_table.cpp:
+        (RenderTableCell::repaint):
+
+2002-11-21  David Hyatt  <hyatt at apple.com>
+
 	Fix <font> so that behaves just like <i>, <b>, etc. Stop
 	the (incorrect) allowance of blocks inside <font> tags.
 	This fixes the mispositioning on avoyagetoarcturus.blogspot.com
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 31e16b7..b45119c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,14 @@
 2002-11-21  David Hyatt  <hyatt at apple.com>
 
+	Stop table cells from repainting the whole table when they
+	get a repaint.  Gives another big boost to link rollover
+	performance when links' containing blocks are table cells.
+	
+        * khtml/rendering/render_table.cpp:
+        (RenderTableCell::repaint):
+
+2002-11-21  David Hyatt  <hyatt at apple.com>
+
 	Fix <font> so that behaves just like <i>, <b>, etc. Stop
 	the (incorrect) allowance of blocks inside <font> tags.
 	This fixes the mispositioning on avoyagetoarcturus.blogspot.com
diff --git a/WebCore/khtml/rendering/render_table.cpp b/WebCore/khtml/rendering/render_table.cpp
index 516c4de..7fe7c82 100644
--- a/WebCore/khtml/rendering/render_table.cpp
+++ b/WebCore/khtml/rendering/render_table.cpp
@@ -2284,7 +2284,9 @@ void RenderTableCell::paintBoxDecorations(QPainter *p,int, int _y,
 
 void RenderTableCell::repaint(bool immediate)
 {
-    if ( m_table ) m_table->repaint(immediate);
+    // XXXdwh WHY? This just causes way too much repainting!
+    //if ( m_table ) m_table->repaint(immediate);
+    return RenderFlow::repaint(immediate);
 }
 
 #ifndef NDEBUG

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list