| <style type="text/css" media="screen"> |
| -webkit-transition-duration: 1s; |
| -webkit-transition-property: top, -webkit-text-fill-color, text-shadow, all; |
| -webkit-text-fill-color: white; |
| text-shadow: 1px 1px 1px rgba(0,0,0, .8); |
| var box = document.getElementById('box'); |
| box.className = "change"; |
| 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 start the transition |
| of the explicit property. Transitions of 3 sample properties are used (top, -webkit-text-fill-color, |
| and text-shadow), to test 3 separate code paths for property animation. |
| This test should not crash. |