4 <style type=
"text/css" media=
"screen">
11 background-color: blue;
12 -webkit-animation-duration:
2s;
13 -webkit-animation-name: test;
15 @-webkit-keyframes test {
20 -webkit-animation-timing-function: linear;
29 <script src=
"resources/animation-test-helpers.js" type=
"text/javascript" charset=
"utf-8"></script>
30 <script type=
"text/javascript" charset=
"utf-8">
32 const expectedValues = [
33 // [time, element-id, property, expected-value, tolerance]
34 [
0.25,
"test",
"left",
113,
15],
35 [
0.5,
"test",
"left",
132,
15],
38 runAnimationTest(expectedValues);
42 <p>Tests that when an animation uses keyframes which contains no properties, those keyframes are ignored.
</p>