layout/reftests/bugs/67752-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3   <head>
     4     <script>
     5       function f() {
     6         document.body.style.fontSize = "20px";
     7         // End the test asynchronously so we get a chance to do a reflow before
     8         // that happens.
     9         setTimeout("document.documentElement.className = ''", 0);
    10       }
    11     </script>
    12     <style>
    13       span { display: inline-block; width: 1em; height: 10px; background: green; }
    14     </style>
    15   </head>
    16   <body onload="f()" style="position: relative; font-size: 10px">
    17     Test
    18     <div style="position: absolute; left: 0; width: 25px; height: 0; top: 0;">
    19       <span></span>
    20       <span></span>
    21     </div>
    22   </body>
    23 </html>

mercurial