9 background-color: green;
10 -webkit-transition: left
4s linear
1s;
17 <script src=
"../animations/resources/animation-test-helpers.js"></script>
19 const expectedValues
= [
20 // [time, element-id, property, expected-value, tolerance]
21 [0.5, "target", "left", 100, 4],
26 document
.getElementById("target").className
= "moved";
29 runTransitionTest(expectedValues
, setupTest
);
33 <h1>Test for transition in delay phase
</h1>
35 <p>This test works only in DumpRenderTree. It uses an API exposed
36 only there to jump to a particular time in a running transition.
37 Tests bug
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=59475">59475</a>
40 <div id=
"target"></div>
41 <div id=
"result"></div>