gecko-dev/layout/reftests/bugs/1050493-1.html
Markus Stange f705025184 Bug 1050493 - Invalidate ColorLayer bounds changes. r=roc
--HG--
extra : rebase_source : 2196e9cb32a41771b9078ec1e66dbb97ef430b71
2014-09-23 17:47:36 -04:00

42 lines
886 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test for bug 1050493</title>
<style>
body {
position: relative;
}
#box {
width: 50px;
height: 50px;
background-color: red;
position: absolute;
}
</style>
<div style="left: 0; top: 0;" id="box"></div>
<script>
var positions = [
{ x: 4.6260797642782014, y: 0.46260797642782014 },
{ x: 5.0304173163526205, y: 0.4878118314685598 },
{ x: 5.0304173163526205, y: 0.5041006554218519 },
{ x: 5.556750627747686, y: 0.5041006554218519 }];
var s = document.getElementById('box').style,
i = 0;
function f() {
if (i < positions.length) {
s.left = positions[i].x + "px";
s.top = positions[i].y + "px";
i++;
requestAnimationFrame(f);
} else {
document.documentElement.className = "";
}
}
window.addEventListener("MozReftestInvalidate", function () {
f();
});
</script>