[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:15:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 218c4e41b26416a473e52f8dffe337b6ce903db5
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 16 22:32:52 2002 +0000

    	Use the layer's bounds as the damage rect not the object's.
    	The layer knows about the overflow out of the object.  The
    	object does not.  Duh.
    
    	Fixes disney.com bustage.
    
            Reviewed by sullivan
    
            * khtml/rendering/render_layer.cpp:
            (RenderLayer::constructZTree):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3089 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index e60f22c..720edb0 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,18 @@
 2002-12-16  David Hyatt  <hyatt at apple.com>
 
+	Use the layer's bounds as the damage rect not the object's.
+	The layer knows about the overflow out of the object.  The
+	object does not.  Duh.
+
+	Fixes disney.com bustage.
+	
+        Reviewed by sullivan
+
+        * khtml/rendering/render_layer.cpp:
+        (RenderLayer::constructZTree):
+
+2002-12-16  David Hyatt  <hyatt at apple.com>
+
 	Code needs to go in calcMinMaxWidth instead, so parents computing
 	their own minmax widths will get the correct value during the ifrst
 	pass.  With this change weather.com is actually fixed.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index e60f22c..720edb0 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,18 @@
 2002-12-16  David Hyatt  <hyatt at apple.com>
 
+	Use the layer's bounds as the damage rect not the object's.
+	The layer knows about the overflow out of the object.  The
+	object does not.  Duh.
+
+	Fixes disney.com bustage.
+	
+        Reviewed by sullivan
+
+        * khtml/rendering/render_layer.cpp:
+        (RenderLayer::constructZTree):
+
+2002-12-16  David Hyatt  <hyatt at apple.com>
+
 	Code needs to go in calcMinMaxWidth instead, so parents computing
 	their own minmax widths will get the correct value during the ifrst
 	pass.  With this change weather.com is actually fixed.
diff --git a/WebCore/khtml/rendering/render_layer.cpp b/WebCore/khtml/rendering/render_layer.cpp
index feaa46d..72cdc0f 100644
--- a/WebCore/khtml/rendering/render_layer.cpp
+++ b/WebCore/khtml/rendering/render_layer.cpp
@@ -350,7 +350,7 @@ RenderLayer::constructZTree(QRect overflowClipRect, QRect posClipRect,
     // layers are clipped according to the overflowClipRect.
     QRect clipRectToApply = m_object->isPositioned() ? posClipRect : overflowClipRect;
     QRect damageRect = eventProcessing ? clipRectToApply : 
-                    clipRectToApply.intersect(QRect(x,y,m_object->width(), m_object->height()));
+                    clipRectToApply.intersect(layerBounds);
     
     // If we establish a clip rect, then we want to intersect that rect
     // with the damage rect to form a new damage rect.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list