| <!DOCTYPE><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=true ] --> |
| background-repeat: no-repeat; |
| -webkit-transition-duration: 1s; |
| -webkit-transition-timing-function: linear; |
| -webkit-transition-property: box-shadow; |
| box-shadow: inset 10px 20px 4px gray; |
| box-shadow: inset 20px 10px 4px gray, 10px 10px 6px black; |
| <script src="resources/transition-test-helpers.js"></script> |
| <script type="text/javascript"> |
| // [time, element-id, property, expected-value, tolerance] |
| [0.5, 'box', 'box-shadow', [15, 15, 5, 5], 4], |
| document.getElementById('box').className = 'box final'; |
| runTransitionTest(expectedValues, setupTest, usePauseAPI); |
| <div id="box" class="box">BOX</div> |