4 <title>Testing animation on a none keyword
</title>
8 -webkit-animation-duration:
2s;
9 -webkit-animation-timing-function: linear;
10 -webkit-animation-name: none-test;
13 @-webkit-keyframes none-test {
14 25% { max-width:
10px; }
15 75% { max-width:
10px; }
18 <script src=
"resources/animation-test-helpers.js"></script>
20 const expectedValues
= [
21 // [time, element-id, property, expected-value, tolerance]
22 [0, "test", "max-width", "none", 0],
23 [0.25, "test", "max-width", 10, 0],
24 [1, "test", "max-width", 10, 0],
25 [1.75, "test", "max-width", "none", 0],
26 [2, "test", "max-width", "none", 0],
29 runAnimationTest(expectedValues
);
33 <div id=
"test">Animating max-width from/to none.
</div>