1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/reftest/611498-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!doctype html> 1.5 +<html class="reftest-wait"> 1.6 +<script type="text/javascript"> 1.7 +function done() 1.8 +{ 1.9 + document.documentElement.className = ""; 1.10 +} 1.11 +function move() 1.12 +{ 1.13 + elem = document.getElementById("moving"); 1.14 + elem.addEventListener("transitionend", done, true); 1.15 + elem.style.position = "relative"; 1.16 + elem.style.top = 0; 1.17 +} 1.18 +</script> 1.19 +<body style="background: url('bwinton.jpg'); background-attachment: fixed" onload="move()"> 1.20 +<div id="moving" style="position: absolute; top: 50px; background-image: url('blacktrans.png'); width: 100px; height: 100px; -moz-transition: top 0.1s; padding: 2px;">blah blah blah</div> 1.21 +</body> 1.22 +</html>