gfx/tests/reftest/611498-1.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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