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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 17:50:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9404da900ec489d7df6e3c49cc2454bee9ea3f6c
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 1 03:38:33 2010 +0000

    2010-11-30  Rob Buis  <rwlbuis at gmail.com>
    
            Reviewed by Xan Lopez.
    
            [gtk] SVGLineElement-dom-requiredFeatures.html and
            SVGLineElement-svgdom-requiredFeatures.html failing in the bots
            https://bugs.webkit.org/show_bug.cgi?id=49529
    
            Replaced fill with stroke and increased the line size. This fixes
            the problem clicking the element.
    
            * platform/gtk/Skipped:
            * svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js:
            * svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73005 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index f77a0d2..15155e6 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,18 @@
+2010-11-30  Rob Buis  <rwlbuis at gmail.com>
+
+        Reviewed by Xan Lopez.
+
+        [gtk] SVGLineElement-dom-requiredFeatures.html and
+        SVGLineElement-svgdom-requiredFeatures.html failing in the bots
+        https://bugs.webkit.org/show_bug.cgi?id=49529
+
+        Replaced fill with stroke and increased the line size. This fixes
+        the problem clicking the element.
+
+        * platform/gtk/Skipped:
+        * svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js:
+        * svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js:
+
 2010-11-30  Ojan Vafai  <ojan at chromium.org>
 
         [chromium] Update inaccurate test expectation and mark fast/regex/pcre-test-1.html as
diff --git a/LayoutTests/platform/gtk/Skipped b/LayoutTests/platform/gtk/Skipped
index c8a9f66..de28923 100644
--- a/LayoutTests/platform/gtk/Skipped
+++ b/LayoutTests/platform/gtk/Skipped
@@ -5548,10 +5548,6 @@ fast/events/scroll-after-click-on-tab-index.html
 # https://bugs.webkit.org/show_bug.cgi?id=49179
 animations/stop-animation-on-suspend.html
 
-# https://bugs.webkit.org/show_bug.cgi?id=49529
-svg/dynamic-updates/SVGLineElement-dom-requiredFeatures.html
-svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures.html
-
 # computedStyleIncludingVisitedInfo is not implemented
 # https://bugs.webkit.org/show_bug.cgi?id=37336
 fast/history/nested-visited-test.html
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js
index b1f8e95..3a54c7a 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js
@@ -8,7 +8,8 @@ lineElement.setAttribute("x1", "20");
 lineElement.setAttribute("y1", "20");
 lineElement.setAttribute("x2", "200");
 lineElement.setAttribute("y2", "200");
-lineElement.setAttribute("fill", "green");
+lineElement.setAttribute("stroke", "green");
+lineElement.setAttribute("stroke-width", "10px");
 
 rootSVGElement.appendChild(lineElement);
 
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js
index 2350445..2c0b9d0 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js
@@ -8,7 +8,8 @@ lineElement.setAttribute("x1", "20");
 lineElement.setAttribute("y1", "20");
 lineElement.setAttribute("x2", "200");
 lineElement.setAttribute("y2", "200");
-lineElement.setAttribute("fill", "green");
+lineElement.setAttribute("stroke", "green");
+lineElement.setAttribute("stroke-width", "10px");
 
 rootSVGElement.appendChild(lineElement);
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list