10 background-color: blue;
12 -webkit-transition: transform,
2s;
16 if (window
.testRunner
) {
17 testRunner
.dumpAsText();
18 testRunner
.waitUntilDone();
23 if (window
.testRunner
)
24 testRunner
.notifyDone();
27 function returnToStart()
29 var box
= document
.getElementById('box');
30 box
.style
.webkitTransform
= 'rotate(0)';
31 setTimeout(finish
, 20);
36 var box
= document
.getElementById('box');
37 box
.style
.webkitTransform
= 'rotate(180deg)';
38 setTimeout(returnToStart
, 20);
41 window
.addEventListener('load', start
, false);
47 This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property
48 CSS property. The crash would occur when you retarget the transition. This test should not crash.