blob: 24290af94b10925aef2b4647250fac44758f00a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!DOCTYPE html>
<html>
<head>
<style>
.box {
position: relative;
left: 0;
height: 100px;
width: 100px;
margin: 10px;
background-color: blue;
transition-property: left;
transition-duration: 0.5s;
-webkit-transition-property: left;
-webkit-transition-duration: 0.5s;
}
</style>
<script src="transition-end-event-helpers.js"></script>
<script type="text/javascript">
var expectedEndEvents = [
// [property-name, element-id, elapsed-time, listen]
["left", "box1", 0.5, false]
];
function setupTest()
{
var box = document.getElementById('box1');
box.style.left = '200px';
}
runTransitionTest(expectedEndEvents, setupTest);
</script>
</head>
<body>
<p>Initiating a transition and catching the transition unprefixed event with the html attribute ontransitionend.</p>
<div id="container">
<div id="box1" class="box" ontransitionend="recordTransitionEndEvent(event)"></div>
</div>
<div id="result"></div>
</body>
</html>
|