layout/generic/crashtests/786740-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

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html class="reftest-wait">
michael@0 3 <head>
michael@0 4 <style>
michael@0 5 #d {
michael@0 6 transition:opacity 1s;
michael@0 7 }
michael@0 8 #p {
michael@0 9 position:absolute;
michael@0 10 }
michael@0 11 </style>
michael@0 12 </head>
michael@0 13 <body>
michael@0 14 <div id="d">
michael@0 15 Hello
michael@0 16 <span id="s"><div id="p">Kitty</div></span>
michael@0 17 </div>
michael@0 18 <script>
michael@0 19 var d = document.getElementById("d");
michael@0 20 d.getBoundingClientRect();
michael@0 21 d.style.opacity = 0.3;
michael@0 22 window.addEventListener("MozReftestInvalidate",
michael@0 23 function() {
michael@0 24 setTimeout(function() {
michael@0 25 document.body.removeChild(d);
michael@0 26 document.documentElement.removeAttribute("class");
michael@0 27 }, 50);
michael@0 28 }, false);
michael@0 29 </script>
michael@0 30 </body>
michael@0 31 </html>

mercurial