| -webkit-transform: translateX(0px); |
| -webkit-transition-duration: 1s; |
| -webkit-transition-timing-function: frames(5); |
| -webkit-transition-property: -webkit-transform; |
| <script src="resources/transition-test-helpers.js"></script> |
| <script type="text/javascript"> |
| // [time, element-id, property, expected-value, tolerance] |
| [0.25, "box", "-webkit-transform.4", 50, 5], |
| [0.5, "box", "-webkit-transform.4", 100, 5], |
| [0.75, "box", "-webkit-transform.4", 150, 5], |
| var box = document.getElementById('box'); |
| box.style.webkitTransform = 'translateX(200px)'; |
| runTransitionTest(expectedValues, setupTest, usePauseAPI); |
| The box should move horizontally 200px over 1s, in 4 equal increments. |