| <style type="text/css" media="screen"> |
| -webkit-animation-name: move; |
| -webkit-animation-duration: 1.5s; |
| @-webkit-keyframes move { |
| -webkit-animation-timing-function: ease-out; |
| -webkit-animation-timing-function: linear; |
| -webkit-animation-timing-function: ease-in; |
| <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
| <script type="text/javascript" charset="utf-8"> |
| // [animation-name, time, element-id, property, expected-value, tolerance] |
| ["move", 0.75, "box", "left", 300, 20], |
| runAnimationTest(expectedValues); |
| Tests whether timing functions inside keyframes are respected. |