layout/reftests/bugs/983084-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <html class="reftest-wait">
     2     <head>
     3         <script>
     4             function showItem() {
     5                 var el = document.getElementById("two");
     6                 getComputedStyle(el).opacity; // flush styles
     7                 el.style.opacity = 1;
     8                 document.documentElement.removeAttribute("class");
     9             }
    10             window.addEventListener("MozReftestInvalidate", showItem, false);
    11         </script>
    12     </head>
    13     <body>
    14         <div id="one" style="width:50px; height:50px; background-color:blue; position:absolute"></div>
    15         <div id="two" style="width:500px; height:500px; background-color:red; opacity:0.99"></div>
    16     </body>
    17 </html>

mercurial