| -webkit-transform: rotate(0); |
| -webkit-transition: -webkit-transform, 2s; |
| testRunner.waitUntilDone(); |
| var box = document.getElementById('box'); |
| box.style.webkitTransform = 'rotate(0)'; |
| var box = document.getElementById('box'); |
| box.style.webkitTransform = 'rotate(180deg)'; |
| setTimeout(returnToStart, 20); |
| window.addEventListener('load', start, false); |
| This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property |
| CSS property. The crash would occur when you retarget the transition. This test should not crash. |