2 <style type=
"text/css" media=
"screen">
8 -webkit-animation-name: anim;
9 -webkit-animation-duration:
1s;
10 -webkit-animation-timing-function: linear;
18 -webkit-animation-name: anim;
19 -webkit-animation-duration:
1s;
20 -webkit-animation-fill-mode: forwards;
21 -webkit-animation-timing-function: linear;
24 @-webkit-keyframes anim {
29 <script src=
"resources/animation-test-helpers.js"></script>
31 const expectedValues
= [
32 // [time, element-id, property, expected-value, tolerance]
33 [1, "anim", "left", 0, 0],
34 [1, "fillanim", "left", 300, 0],
36 runAnimationTest(expectedValues
);
39 <div id=
"fillanim"></div>