Changeset 53310 in webkit


Ignore:
Timestamp:
Jan 14, 2010 5:52:40 PM (14 years ago)
Author:
ojan@chromium.org
Message:

2010-01-14 Ojan Vafai <ojan@chromium.org>

Reviewed by Eric Seidel.

animations/change-keyframes.html failed on Tiger Bot
https://bugs.webkit.org/show_bug.cgi?id=33370

Increase tolerances. They're still testing the stated goal of the test.

  • animations/change-keyframes.html:
  • transitions/cancel-transition.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53307 r53310  
     12010-01-14  Ojan Vafai  <ojan@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        animations/change-keyframes.html failed on Tiger Bot
     6        https://bugs.webkit.org/show_bug.cgi?id=33370
     7
     8        Increase tolerances. They're still testing the stated goal of the test.
     9
     10        * animations/change-keyframes.html:
     11        * transitions/cancel-transition.html:
     12
    1132010-01-14  Gustavo Noronha Silva  <gns@gnome.org>
    214
  • trunk/LayoutTests/animations/change-keyframes.html

    r53097 r53310  
    2020    @-webkit-keyframes "anim" {
    2121        from { left: 100px; }
    22         40%  { left: 200px; }
    23         60%  { left: 200px; }
     22        10%  { left: 200px; }
     23        90%  { left: 200px; }
    2424        to   { left: 300px; }
    2525    }
     
    5757        keyframes.insertRule("0% { top: 50px; }");
    5858        keyframes.insertRule("10% { top: 100px; }");
    59         keyframes.insertRule("50% { top: 100px; }");
     59        keyframes.insertRule("90% { top: 100px; }");
    6060        keyframes.insertRule("100% { top: 150px; }");
    6161        document.getElementById('box').style.webkitAnimationName = "anim";
  • trunk/LayoutTests/transitions/cancel-transition.html

    r53302 r53310  
    6969            var left = parseFloat(window.getComputedStyle(document.getElementById('a')).left);
    7070            result = "left:";
    71             if (!isEqual(left, 250, 30))
     71            if (!isEqual(left, 250, 50))
    7272                result += "<span style='color:red'>FAIL(was:" + left + ", s/b:150)</span>";
    7373            else
     
    7979            transform = transform.split("(");
    8080            transform = transform[1].split(",");
    81             if (!isEqual(transform[4], 200, 30))
     81            if (!isEqual(transform[4], 200, 50))
    8282                result += "<span style='color:red'>FAIL(was:" + transform[4] + ", s/b:50)</span>";
    8383            else
Note: See TracChangeset for help on using the changeset viewer.