blob: b4198f0f2a3e344ecfa1f68de486e33c99b37561 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Matched Transform Functions</title>
<style type="text/css" media="screen">
#box {
height: 100px;
width: 100px;
background-color: blue;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 3s;
-webkit-transform: translate(0, 0) rotate(0);
}
</style>
<script type="text/javascript" charset="utf-8">
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
function test()
{
var t = window.getComputedStyle(document.getElementById('box')).webkitTransform;
// grab the last value from the matrix()
var lastValueRE = /(\d+)\)$/;
var yTranslate = parseInt(lastValueRE.exec(t));
var result = (yTranslate < 200) ? 'PASS' : 'FAIL: transition should still be running, so y < 200';
document.getElementById('result').innerHTML = result;
if (window.layoutTestController)
layoutTestController.notifyDone();
}
function startTest()
{
var box = document.getElementById('box');
box.style.webkitTransform = 'translate(100px, 0) rotate(0)';
window.setTimeout(function() {
box.style.webkitTransform = 'translate(0, 200px) rotate(10deg)';
window.setTimeout(function() {
test();
}, 200);
}, 300);
}
window.addEventListener('load', startTest, false)
</script>
</head>
<body>
<p>Box should start moving right, then move down</p>
<div id="box">
</div>
<div id="result">
</div>
</body>
</html>