layout/base/crashtests/339651-1.html

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     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