[Webkit-unassigned] [Bug 49529] [gtk] SVGLineElement-dom-requiredFeatures.html and SVGLineElement-svgdom-requiredFeatures.html failing in the bots

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Nov 15 13:00:29 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=49529





--- Comment #1 from Rob Buis <rwlbuis at gmail.com>  2010-11-15 13:00:30 PST ---
Hi,

(In reply to comment #0)
> They work for me locally but apparently the startTest does not start the test in the bots. I'm skipping the tests until we find the issue. Dirk do you have any clue about why this could happen?

This sounds like the onclick is not triggered. You could try such a change to see if it helps:

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..ccbc735 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js
@@ -9,6 +9,7 @@ lineElement.setAttribute("y1", "20");
 lineElement.setAttribute("x2", "200");
 lineElement.setAttribute("y2", "200");
 lineElement.setAttribute("fill", "green");
+lineElement.setAttribute("style", "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..ffab290 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js
@@ -9,6 +9,7 @@ lineElement.setAttribute("y1", "20");
 lineElement.setAttribute("x2", "200");
 lineElement.setAttribute("y2", "200");
 lineElement.setAttribute("fill", "green");
+lineElement.setAttribute("style", "stroke-width:10px");

 rootSVGElement.appendChild(lineElement);

Cheers,

Rob.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list