Title: [87747] trunk/LayoutTests
Revision
87747
Author
[email protected]
Date
2011-05-31 12:51:03 -0700 (Tue, 31 May 2011)

Log Message

2011-05-31  Rob Buis  <[email protected]>

        RS=Dirk Schulze.

        run-webkit-tests on animate-path-nested-transform.html crashes
        https://bugs.webkit.org/show_bug.cgi?id=61798

        "Fix" the crashing test by choosing safer values.

        * svg/animations/script-tests/animate-path-nested-transforms.js:
        (executeTest):

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (87746 => 87747)


--- trunk/LayoutTests/ChangeLog	2011-05-31 19:38:11 UTC (rev 87746)
+++ trunk/LayoutTests/ChangeLog	2011-05-31 19:51:03 UTC (rev 87747)
@@ -1,5 +1,17 @@
 2011-05-31  Rob Buis  <[email protected]>
 
+        RS=Dirk Schulze.
+
+        run-webkit-tests on animate-path-nested-transform.html crashes
+        https://bugs.webkit.org/show_bug.cgi?id=61798
+
+        "Fix" the crashing test by choosing safer values.
+
+        * svg/animations/script-tests/animate-path-nested-transforms.js:
+        (executeTest):
+
+2011-05-31  Rob Buis  <[email protected]>
+
         Reviewed by Dirk Schulze.
 
         https://bugs.webkit.org/show_bug.cgi?id=34301

Modified: trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js (87746 => 87747)


--- trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js	2011-05-31 19:38:11 UTC (rev 87746)
+++ trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js	2011-05-31 19:51:03 UTC (rev 87747)
@@ -16,7 +16,7 @@
 
 var animateMotion = createSVGElement("animateMotion")
 animateMotion.setAttribute("id", "animation")
-animateMotion.setAttribute("dur", "1s")
+animateMotion.setAttribute("dur", "4s")
 animateMotion.setAttribute("repeatCount", "1")
 animateMotion.setAttribute("rotate", "auto")
 animateMotion.setAttribute("path", "M 100,250 C 100,50 400,50 400,250")
@@ -45,8 +45,8 @@
 
 function executeTest() {
     const expectedValues = [
-        ["animation", 0.01, "rect", startSample],
-        ["animation", 0.99, "rect", endSample]
+        ["animation", 0.02, "rect", startSample],
+        ["animation", 3.99, "rect", endSample]
     ];
     
     runAnimationTest(expectedValues);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to