OLD | NEW |
1 timing_test(function() { | 1 timing_test(function() { |
2 at(0 * 1000, function() { | 2 at(0 * 1000, function() { |
3 assert_styles(".anim",{'transform':'matrix(1, 0, 0, 1, 0, 0)'}); | 3 assert_styles(".anim",{'transform':'matrix(1, 0, 0, 1, 0, 0)'}); |
4 }); | 4 }); |
5 at(0.4 * 1000, function() { | 5 at(0.4 * 1000, function() { |
6 assert_styles(".anim", [ | 6 assert_styles(".anim", [ |
7 {'transform':'matrix(1, 0, 0, 1, 40, 0)'}, | 7 {'transform':'matrix(1, 0, 0, 1, 40, 0)'}, |
8 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 0, 0)'}, | 8 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 0, 0)'}, |
9 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 40, 0)'}, | 9 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 40, 0)'}, |
10 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 38.04, 12.36)'}, | 10 {'transform':'matrix(0.9511, 0.309, -0.309, 0.9511, 38.04, 12.36)'}, |
(...skipping 25 matching lines...) Loading... |
36 }); | 36 }); |
37 at(2 * 1000, function() { | 37 at(2 * 1000, function() { |
38 assert_styles(".anim", [ | 38 assert_styles(".anim", [ |
39 {'transform':'matrix(1, 0, 0, 1, 200, 0)'}, | 39 {'transform':'matrix(1, 0, 0, 1, 200, 0)'}, |
40 {'transform':'matrix(0, 1, -1, 0, 0, 0)'}, | 40 {'transform':'matrix(0, 1, -1, 0, 0, 0)'}, |
41 {'transform':'matrix(0, 1, -1, 0, 200, 0)'}, | 41 {'transform':'matrix(0, 1, -1, 0, 200, 0)'}, |
42 {'transform':'matrix(0, 1, -1, 0, 0, 200)'}, | 42 {'transform':'matrix(0, 1, -1, 0, 0, 200)'}, |
43 ]); | 43 ]); |
44 }); | 44 }); |
45 }, "Auto generated tests"); | 45 }, "Auto generated tests"); |
OLD | NEW |