1 <!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
6 <meta http-equiv=
"Content-Type" content=
"text/html; charset=utf-8">
7 <title>Transition/Animation Test #
2</title>
8 <style type=
"text/css" media=
"screen">
15 background-color: blue;
16 -webkit-animation-duration:
0.3s;
17 -webkit-animation-timing-function: linear;
18 -webkit-animation-name: anim;
19 -webkit-transition-property: -webkit-transform;
20 -webkit-transition-duration:
10s;
21 -webkit-transition-timing-function: linear;
23 @-webkit-keyframes anim {
24 from { transform: translate(
0,
100px) }
25 to { transform: translate(
400px,
100px) }
28 <script src=
"resources/animation-test-helpers.js" type=
"text/javascript" charset=
"utf-8"></script>
29 <script type=
"text/javascript" charset=
"utf-8">
31 const expectedValues = [
32 // [time, element-id, property, expected-value, tolerance]
33 [
0.4,
"box",
"transform",
"none",
0],
36 // FIXME: This doesn't get called so we don't trigger a transition...
39 document.getElementById(
"box").style.webkitTransform =
"translateX(400px)";
42 runAnimationTest(expectedValues, undefined, undefined, 'do-not-use-pause-api');
47 This test has a transition and animation on the same property (-webkit-transform).
48 The animation starts and then the transition is triggered. The transition should start
49 at the position before the animation started (the unanimated position), which is (
0,
0). If it
50 starts from the start point of the animation (
0,
100) then there is an error