11 background-color: green;
12 -webkit-transition-property: opacity;
13 -webkit-transition-timing-function: linear;
14 -webkit-transition-duration:
5s;
27 background-color: blue;
36 background-color: orange;
41 if (window
.testRunner
)
42 testRunner
.waitUntilDone();
46 var container
= document
.getElementById('first');
47 container
.style
.opacity
= 1;
49 // dump the tree in the middle of the transition
50 if (window
.internals
) {
51 window
.internals
.forceCompositingUpdate(document
);
52 window
.internals
.pauseAnimations(2.5);
54 if (window
.testRunner
) {
55 testRunner
.notifyDone();
58 // FIXME: this should use runTransitionTest().
59 window
.addEventListener('load', runTest
, false);
64 <div class=
"container" id=
"first">
65 <div class=
"box"></div>
66 <div class=
"indicator"></div>