Changeset 87907 in webkit


Ignore:
Timestamp:
Jun 2, 2011 7:20:54 AM (13 years ago)
Author:
rwlbuis@webkit.org
Message:

2011-06-02 Rob Buis <rbuis@rim.com>

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87906 r87907  
     12011-06-02  Rob Buis  <rbuis@rim.com>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        LayoutTests/svg/animations/animate-path-nested-transforms.html causes assertion in debug mode.
     6        https://bugs.webkit.org/show_bug.cgi?id=49045
     7
     8        Fix mistake in id part of expected values.
     9
     10        * svg/animations/script-tests/animate-mpath-insert.js:
     11        (executeTest):
     12        * svg/animations/script-tests/animate-path-nested-transforms.js:
     13        (executeTest):
     14
    1152011-06-02  Kent Tamura  <tkent@chromium.org>
    216
  • trunk/LayoutTests/svg/animations/script-tests/animate-mpath-insert.js

    r87746 r87907  
    1212
    1313var g = createSVGElement("g")
     14g.setAttribute("id", "g")
    1415
    1516var rect = createSVGElement("rect")
     
    4647function executeTest() {
    4748    const expectedValues = [
    48         ["animation", 0.02, "rect", startSample],
    49         ["animation", 3.99, "rect", endSample]
     49        ["animation", 0.01, "g", startSample],
     50        ["animation", 3.99, "g", endSample]
    5051    ];
    5152   
  • trunk/LayoutTests/svg/animations/script-tests/animate-path-nested-transforms.js

    r87747 r87907  
    55
    66var g = createSVGElement("g")
     7g.setAttribute("id", "g");
    78g.setAttribute("transform", "translate(300, 30)")
    89
     
    4647function executeTest() {
    4748    const expectedValues = [
    48         ["animation", 0.02, "rect", startSample],
    49         ["animation", 3.99, "rect", endSample]
     49        ["animation", 0.01, "g", startSample],
     50        ["animation", 3.99, "g", endSample]
    5051    ];
    5152   
Note: See TracChangeset for help on using the changeset viewer.