summaryrefslogtreecommitdiffstats
path: root/gfx/tests/reftest/611498-1.html
blob: 453ec43624bc659a75e05ac864a2a0b3b63a0e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html class="reftest-wait">
<script type="text/javascript">
function done()
{
  document.documentElement.className = "";
}
function move()
{
  elem = document.getElementById("moving");
  elem.addEventListener("transitionend", done, true);
  elem.style.position = "relative";
  elem.style.top = 0;
}
</script>
<body style="background: url('bwinton.jpg'); background-attachment: fixed" onload="move()">
<div id="moving" style="position: absolute; top: 50px; background-image: url('blacktrans.png'); width: 100px; height: 100px; transition: top 0.1s; padding: 2px;">blah blah blah</div>
</body>
</html>