[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

simon.fraser at apple.com simon.fraser at apple.com
Thu Apr 8 02:11:38 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit c3d410839cb34fc231aec2aa222a1c11901394a5
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Mar 5 22:46:08 2010 +0000

    2010-03-05  Simon Fraser  <simon.fraser at apple.com>
    
            Reviewed by Dan Bernstein.
    
            Child clipping compositing layers don't show the blue debug color
            https://bugs.webkit.org/show_bug.cgi?id=35807
    
            Set a layer owner on the GraphicsLayers created for clipping children,
            so that they can get to the debug settings that give them the blue color.
    
            * rendering/RenderLayerBacking.cpp:
            (WebCore::RenderLayerBacking::updateClippingLayers):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55595 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8c59218..c416f28 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Dan Bernstein.
 
+        Child clipping compositing layers don't show the blue debug color
+        https://bugs.webkit.org/show_bug.cgi?id=35807
+
+        Set a layer owner on the GraphicsLayers created for clipping children,
+        so that they can get to the debug settings that give them the blue color.
+
+        * rendering/RenderLayerBacking.cpp:
+        (WebCore::RenderLayerBacking::updateClippingLayers):
+
+2010-03-05  Simon Fraser  <simon.fraser at apple.com>
+
+        Reviewed by Dan Bernstein.
+
         MobileMe movie page is missing playback controls
         https://bugs.webkit.org/show_bug.cgi?id=35805
         <rdar://problem/7653169>
diff --git a/WebCore/rendering/RenderLayerBacking.cpp b/WebCore/rendering/RenderLayerBacking.cpp
index f637e3c..b5f74c6 100644
--- a/WebCore/rendering/RenderLayerBacking.cpp
+++ b/WebCore/rendering/RenderLayerBacking.cpp
@@ -424,7 +424,7 @@ bool RenderLayerBacking::updateClippingLayers(bool needsAncestorClip, bool needs
     
     if (needsDescendantClip) {
         if (!m_clippingLayer) {
-            m_clippingLayer = GraphicsLayer::create(0);
+            m_clippingLayer = GraphicsLayer::create(this);
 #ifndef NDEBUG
             m_clippingLayer->setName("Child clipping Layer");
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list