layout/reftests/bugs/490176-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 <html>
     2 <head>
     3 <style type="text/css">
     5 body, p {
     6   display: table;
     7   position: absolute;
     8 }
    10 </style>
    12 <script type="text/javascript">
    14 function boom()
    15 {
    16   var n = document.getElementById("n");
    17   var b = document.body;
    18   var next = n.nextSibling;
    19   b.removeChild(n);
    20   b.insertBefore(n, next);
    21 }
    23 </script>
    24 </head>
    26 <body onload="boom();">
    27 <div>A B</div>
    28 <p id="n">C D</p>
    29 </body>
    31 </html>

mercurial