tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

383089-1.html (2291B)


      1 <html style="width: 1px;" class="reftest-wait"><head style="float: left; position: fixed; display: initial;" id="head">
      2 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      3 
      4 
      5 
      6 <script style="display: none;" type="text/javascript">
      7 
      8 var iter;
      9 var interv;
     10 
     11 function olo()
     12 {
     13  iter = foo();
     14  interv = setInterval(neext, 30);
     15 }
     16 
     17 function neext()
     18 {
     19  let {done} = iter.next();
     20  if (done) {
     21    clearInterval(interv);
     22  }
     23 }
     24 
     25 function* foo()
     26 {
     27  var docElem = document.documentElement;
     28  var head = document.getElementById("head");
     29  var br1 = document.getElementById("br1");
     30  var br2 = document.getElementById("br2");
     31  var br3 = document.getElementById("br3");
     32  var br4 = document.getElementById("br4");
     33  var br5 = document.getElementById("br5");
     34  var br6 = document.getElementById("br6");
     35  var br7 = document.getElementById("br7");
     36  var tableRow = document.getElementById("tableRow");
     37      
     38  br6.style.width = "1px";
     39  br1.style.overflow = "visible";
     40  head.style.cssFloat = "left";
     41  br4.style.position = "static";
     42  br7.style.color = "green";
     43  br3.style.height = "auto";
     44  yield;
     45 
     46  br7.style.width = "2px";
     47  yield;
     48 
     49  br5.style.background = "yellow";
     50  br7.style.color = "black";
     51  yield;
     52 
     53  br7.style.display = "table-cell";
     54  head.style.position = "fixed";
     55  br5.style.display = "inline";
     56  br3.style.clear = "both";
     57  br6.style.visibility = "visible";
     58  yield;
     59 
     60  tableRow.style.display = "list-item";
     61  br3.style.width = "auto";
     62  br2.style.clear = "none";
     63  head.style.display = "initial"; // doesn't seem to crash when this is "block"!
     64  docElem.style.width = "1px";
     65  
     66  document.documentElement.removeAttribute("class");
     67 }
     68 
     69 </script>
     70 
     71 <style>
     72 </style>
     73 
     74 </head><body onload="setTimeout(olo, 30);">
     75 
     76 <br style="overflow: visible;" id="br1">
     77 <br style="clear: none;" id="br2">
     78 <br style="height: auto; clear: both; width: auto;" id="br3">
     79 <br style="position: static;" id="br4">
     80 <br style="background: yellow none repeat scroll 0% 0%; background-clip: initial; background-origin: initial; display: inline;" id="br5">
     81 <br style="width: 1px; visibility: visible;" id="br6">
     82 <br style="color: black; width: 2px; display: table-cell;" id="br7">
     83 <table border="1"><tbody><tr style="display: list-item;" id="tableRow"><td>x</td></tr></tbody></table>
     84 
     85 </body></html>