Diff
Modified: trunk/LayoutTests/ChangeLog (87906 => 87907)
--- trunk/LayoutTests/ChangeLog 2011-06-02 14:12:10 UTC (rev 87906)
+++ trunk/LayoutTests/ChangeLog 2011-06-02 14:20:54 UTC (rev 87907)
@@ -1,3 +1,17 @@
+2011-06-02 Rob Buis <[email protected]>
+
+ Reviewed by Nikolas Zimmermann.
+
+ LayoutTests/svg/animations/animate-path-nested-transforms.html causes assertion in debug mode.
+ https://bugs.webkit.org/show_bug.cgi?id=49045
+
+ Fix mistake in id part of expected values.
+
+ * svg/animations/script-tests/animate-mpath-insert.js:
+ (executeTest):
+ * svg/animations/script-tests/animate-path-nested-transforms.js:
+ (executeTest):
+
2011-06-02 Kent Tamura <[email protected]>
[Chromium] Update spinbutton expectations.
Modified: trunk/LayoutTests/svg/animations/script-tests/animate-mpath-insert.js (87906 => 87907)
--- trunk/LayoutTests/svg/animations/script-tests/animate-mpath-insert.js 2011-06-02 14:12:10 UTC (rev 87906)
+++ trunk/LayoutTests/svg/animations/script-tests/animate-mpath-insert.js 2011-06-02 14:20:54 UTC (rev 87907)
@@ -11,6 +11,7 @@
rootSVGElement.appendChild(defs)
var g = createSVGElement("g")
+g.setAttribute("id", "g")
var rect = createSVGElement("rect")
rect.setAttribute("id", "rect")
@@ -45,8 +46,8 @@
function executeTest() {
const expectedValues = [
- ["animation", 0.02, "rect", startSample],
- ["animation", 3.99, "rect", endSample]
+ ["animation", 0.01, "g", startSample],
+ ["animation", 3.99, "g", endSample]
];
runAnimationTest(expectedValues);
Modified: trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js (87906 => 87907)
--- trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js 2011-06-02 14:12:10 UTC (rev 87906)
+++ trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js 2011-06-02 14:20:54 UTC (rev 87907)
@@ -4,6 +4,7 @@
rootSVGElement.setAttribute("width", 800)
var g = createSVGElement("g")
+g.setAttribute("id", "g");
g.setAttribute("transform", "translate(300, 30)")
var rect = createSVGElement("rect")
@@ -45,8 +46,8 @@
function executeTest() {
const expectedValues = [
- ["animation", 0.02, "rect", startSample],
- ["animation", 3.99, "rect", endSample]
+ ["animation", 0.01, "g", startSample],
+ ["animation", 3.99, "g", endSample]
];
runAnimationTest(expectedValues);