9 -webkit-transition-property: top, background;
10 -webkit-transition-duration:
200ms;
11 transform: translateZ(
0);
15 if (window
.testRunner
) {
16 testRunner
.waitUntilDone();
19 var target
= document
.getElementById('target');
20 target
.style
.top
= '100px';
21 target
.style
.background
= 'green';
23 if (window
.testRunner
) {
24 document
.addEventListener('transitionend', function() {
25 testRunner
.notifyDone();
29 <div id=
"target">This box should transition from red to green.
</div>