5 <style type=
"text/css" media=
"screen">
10 background-color: blue;
11 -webkit-transition-duration:
1s;
12 -webkit-transition-property: top, -webkit-text-fill-color, text-shadow, all;
15 -webkit-text-fill-color: white;
17 text-shadow:
1px
1px
1px rgba(
0,
0,
0,
.8);
21 if (window
.testRunner
) {
22 testRunner
.dumpAsText();
27 var box
= document
.getElementById('box');
28 box
.className
= "change";
31 window
.addEventListener('load', start
, false);
37 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 start the transition
38 of the explicit property. Transitions of
3 sample properties are used (top, -webkit-text-fill-color,
39 and text-shadow), to test
3 separate code paths for property animation.
41 This test should not crash.