11 background-color: blue;
12 -webkit-transition-duration:
1s;
13 -webkit-transition-timing-function: linear;
14 -webkit-transition-property: left;
17 <script src=
"../animations/resources/animation-test-helpers.js" type=
"text/javascript"></script>
19 const expectedValues
= [
20 // [time, element-id, property, expected-value, tolerance]
21 [0.5, 'box', 'left', 50, 10],
22 [0.8, 'box', 'left', 0, 0],
25 function changeDuration() {
26 box
.style
.webkitTransitionDuration
= "0.1s";
30 box
.style
.left
= "0px";
38 function setupTest() {
39 box
.style
.left
= '100px';
42 runTransitionTest(expectedValues
, setupTest
, callbacks
, false, true);