layout/base/crashtests/339651-1.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <html style="border: 1px solid red; width: 6em;" class="reftest-wait">
     3 <head>
     4 <script type="text/javascript">
     6 function f1()
     7 {
     8   document.getElementById("s").style.cssFloat = "left";
    10   document.body.style.display = "inline";
    11   document.getElementById("d").style.display = "inline"; 
    12   document.getElementById("p").style.display = "inline"; 
    14   setTimeout(f2, 30);
    15 }
    17 function f2()
    18 {
    19   document.getElementById("d").style.cssFloat = "left";
    20   document.documentElement.removeAttribute("class");
    21 }
    23 </script>
    24 </head>
    26 <body onload="f1()">
    28 TTTTT TTTTT
    29 <div id="d">
    30 YY
    31 <p id="p">
    32 ZZ
    33 <span id="s">
    35 </body>
    37 </html>

mercurial