blob: 47a531f1f89884f3de3fcc41a8f0298de97ab3a5 [file] [log] [blame]
<html>
<head>
<title>Transition End Events</title>
<style type="text/css" media="screen">
.box {
position: relative;
left: 0;
height: 100px;
width: 100px;
margin: 10px;
background-color: blue;
-webkit-transition-property: width, left, background-color, height, top;
-webkit-transition-duration: 0.5s;
}
.box1 {
left: 50px;
}
.box2 {
background-color: red;
left: 50px;
}
.box3 {
width: 150px;
background-color: green;
left: 50px;
height: 120px;
-webkit-transition-duration: 0.7s;
}
</style>
<script src="end-event-helpers.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
var expected = [
["background-color", "box2", "webkitTransitionEnd", 0.5],
["background-color", "box3", "webkitTransitionEnd", 0.7],
["height", "box3", "webkitTransitionEnd", 0.7],
["left", "box1", "webkitTransitionEnd", 0.5],
["left", "box2", "webkitTransitionEnd", 0.5],
["left", "box3", "webkitTransitionEnd", 0.7],
["width", "box3", "webkitTransitionEnd", 0.7],
];
function startTransition()
{
var boxes = document.body.getElementsByClassName('box');
for (var i = 0; i < boxes.length; ++i) {
boxes[i].addEventListener("webkitTransitionEnd", recordEvent, false);
boxes[i].className = "box box" + (i+1);
}
window.setTimeout(cleanup, 1000);
}
window.addEventListener('load', startTransition, false);
</script>
</head>
<body>
<p>Initiating transitions on various properties of all boxes.</p>
<div id="container">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
</div>
<div id="result"></div>
</body>
</html>