5 <style type=
"text/css" media=
"screen">
9 border:
1px solid black;
18 background-color: blue;
19 -webkit-animation-name: move;
20 -webkit-animation-duration:
1.5s;
23 @-webkit-keyframes move {
26 -webkit-animation-timing-function: ease-out;
30 -webkit-animation-timing-function: linear;
34 -webkit-animation-timing-function: ease-in;
41 <script src=
"resources/animation-test-helpers.js" type=
"text/javascript" charset=
"utf-8"></script>
42 <script type=
"text/javascript" charset=
"utf-8">
44 const expectedValues = [
45 // [time, element-id, property, expected-value, tolerance]
46 [
0.75,
"box",
"left",
300,
20],
49 runAnimationTest(expectedValues);
54 Tests whether timing functions inside keyframes are respected.