10 background-color: white;
11 -webkit-transition-property: width;
15 -webkit-transition:
2s;
19 background-color: black;
23 <script src=
"../animations/resources/animation-test-helpers.js"></script>
24 <script type=
"text/javascript">
26 const expectedValues
= [
27 // [time, element-id, property, expected-value, tolerance]
28 [0.5, 'box', 'background-color', [153, 153, 153], 4],
33 document
.getElementById('box').className
= 'box final';
36 runTransitionTest(expectedValues
, setupTest
);
41 <div id=
"box" class=
"box"></div>