gfx/tests/reftest/611498-1.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!doctype html>
     2 <html class="reftest-wait">
     3 <script type="text/javascript">
     4 function done()
     5 {
     6   document.documentElement.className = "";
     7 }
     8 function move()
     9 {
    10   elem = document.getElementById("moving");
    11   elem.addEventListener("transitionend", done, true);
    12   elem.style.position = "relative";
    13   elem.style.top = 0;
    14 }
    15 </script>
    16 <body style="background: url('bwinton.jpg'); background-attachment: fixed" onload="move()">
    17 <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>
    18 </body>
    19 </html>

mercurial