Changeset 87747 in webkit


Ignore:
Timestamp:
May 31, 2011 12:51:03 PM (13 years ago)
Author:
rwlbuis@webkit.org
Message:

2011-05-31 Rob Buis <rbuis@rim.com>

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):
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87746 r87747  
     12011-05-31  Rob Buis  <rbuis@rim.com>
     2
     3        RS=Dirk Schulze.
     4
     5        run-webkit-tests on animate-path-nested-transform.html crashes
     6        https://bugs.webkit.org/show_bug.cgi?id=61798
     7
     8        "Fix" the crashing test by choosing safer values.
     9
     10        * svg/animations/script-tests/animate-path-nested-transforms.js:
     11        (executeTest):
     12
    1132011-05-31  Rob Buis  <rbuis@rim.com>
    214
  • trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js

    r71314 r87747  
    1717var animateMotion = createSVGElement("animateMotion")
    1818animateMotion.setAttribute("id", "animation")
    19 animateMotion.setAttribute("dur", "1s")
     19animateMotion.setAttribute("dur", "4s")
    2020animateMotion.setAttribute("repeatCount", "1")
    2121animateMotion.setAttribute("rotate", "auto")
     
    4646function executeTest() {
    4747    const expectedValues = [
    48         ["animation", 0.01, "rect", startSample],
    49         ["animation", 0.99, "rect", endSample]
     48        ["animation", 0.02, "rect", startSample],
     49        ["animation", 3.99, "rect", endSample]
    5050    ];
    5151   
Note: See TracChangeset for help on using the changeset viewer.