[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:56:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e9cbf3352dc5cd9979467811acd314dd75f5038e
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 19 23:28:28 2003 +0000

    Fix build error.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5010 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/kwq/KWQRenderTreeDebug.cpp b/WebCore/kwq/KWQRenderTreeDebug.cpp
index 06d6edc..ca7b1fb 100644
--- a/WebCore/kwq/KWQRenderTreeDebug.cpp
+++ b/WebCore/kwq/KWQRenderTreeDebug.cpp
@@ -162,17 +162,12 @@ static void write(QTextStream &ts, const RenderLayer &l,
     writeIndent(ts, indent);
     
     ts << "layer";
-    
-    QRect r(e.absBounds);
-    
-    ts << " " << r;
+    ts << " " << layerBounds;
 
-    if (layerBounds != layerBounds.intersect(backgroundClipRect)) {
+    if (layerBounds != layerBounds.intersect(backgroundClipRect))
         ts << " backgroundClip " << backgroundClipRect;
-    }
-    if (layerBounds != layerBounds.intersect(clipRect)) {
+    if (layerBounds != layerBounds.intersect(clipRect))
         ts << " clip " << clipRect;
-    }
 
     if (layerType == -1)
         ts << " layerType: background only";

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list