3 <title>Transition End Events
</title>
4 <style type=
"text/css" media=
"screen">
11 background-color: blue;
12 -webkit-transition-property: left;
13 -webkit-transition-duration:
0.5s;
16 <script src=
"transition-end-event-helpers.js" type=
"text/javascript" charset=
"utf-8"></script>
17 <script type=
"text/javascript" charset=
"utf-8">
19 var expectedEndEvents = [
20 // [property-name, element-id, elapsed-time, listen]
21 [
"left",
"box1",
0.5, false]
26 window.onwebkittransitionend = recordTransitionEndEvent;
28 var box = document.getElementById('box1');
29 box.style.left = '
200px';
32 runTransitionTest(expectedEndEvents,
0.7, setupTest);
38 <p>Initiating a
500ms transition on the left property of box1 and catching it on the window.
</p>
41 <div id=
"box1" class=
"box"></div>
44 <div id=
"result"></div>