[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 11:12:44 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e9070c1d72f4b2fe631e2e7f1e9d31229403a55b
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 15 02:56:01 2010 +0000

    2010-07-13  Mirko Damiani  <mirko at develer.com>
    
            Reviewed by Simon Hausmann.
    
            [Qt] CSS border style not cleared for SVG object
            https://bugs.webkit.org/show_bug.cgi?id=42150
    
            For tests and description see:
            https://bugs.webkit.org/show_bug.cgi?id=25738
    
            * platform/graphics/qt/GraphicsContextQt.cpp:
            (WebCore::GraphicsContext::setLineDash):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63394 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3d3db7d..e482416 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-07-13  Mirko Damiani  <mirko at develer.com>
+
+        Reviewed by Simon Hausmann.
+
+        [Qt] CSS border style not cleared for SVG object
+        https://bugs.webkit.org/show_bug.cgi?id=42150
+
+        For tests and description see:
+        https://bugs.webkit.org/show_bug.cgi?id=25738
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+        (WebCore::GraphicsContext::setLineDash):
+
 2010-07-14  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
index 913a764..ea80ec9 100644
--- a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
+++ b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
@@ -1015,7 +1015,8 @@ void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset)
 
         pen.setDashPattern(pattern);
         pen.setDashOffset(dashOffset);
-    }
+    } else
+        pen.setStyle(Qt::SolidLine);
     p->setPen(pen);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list