| -webkit-transition-duration: 1s; |
| -webkit-transition-timing-function: linear; |
| border-image: url('../animations/resources/blue-100.png') 5 5 5 5 /40px stretch stretch; |
| -webkit-transition-property: border-image-source; |
| border-image-source: url('../animations/resources/stripes-100.png'); |
| border-image: url('../animations/resources/blue-100.png') 5 5 5 5 /40px stretch stretch; |
| -webkit-transition-property: border-image; |
| border-image: url('../animations/resources/stripes-100.png') 5 5 5 5 /40px stretch stretch; |
| <script src="resources/transition-test-helpers.js" type="text/javascript"></script> |
| // [time, element-id, property, expected-value, tolerance] |
| [0.5, 'box', 'border-image-source', 0.5, 0.05], |
| [0.5, 'boxShorthand', 'border-image', 0.5, 0.05], |
| document.getElementById('box').className = 'box final'; |
| document.getElementById('boxShorthand').className = 'box final'; |
| runTransitionTest(expectedValues, setupTest, usePauseAPI, true); |
| <div id="box" class="box"></div> |
| <div id="boxShorthand" class="box"></div> |