| -webkit-transition: all 1s linear; |
| <script src="resources/transition-test-helpers.js"></script> |
| <script type="text/javascript"> |
| // [time, element-id, property, expected-value, tolerance, post-completion callback, should-be-transitioning] |
| [0.5, 'outer', 'color', [0, 127, 127], 2, null, shouldBeTransitioning], |
| [0.5, 'inner', 'color', [255, 0, 0], 2, null, shouldNotBeTransitioning], |
| [0.5, 'inner', '-webkit-text-fill-color', [255, 0, 0], 2, null, shouldNotBeTransitioning], |
| document.getElementById('outer').className = 'changed'; |
| runTransitionTest(expectedValues, setupTest, usePauseAPI); |