tor-browser

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

stress-4.html (556B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <style>
      5 #a:first-child::first-line { }
      6 </style>
      7 <script>
      8  function runTest() {
      9    document.getElementById("a").removeAttribute('style');
     10    document.body.offsetWidth;
     11    document.documentElement.className = "";  
     12  }
     13 </script>
     14 </head><body onload="runTest()">
     15 
     16 <div style="position:absolute;">
     17  <span id="a" style="position:fixed;">
     18    <span>
     19      <span style="display:table;position:absolute;">
     20      </span>
     21    </span>
     22    Loading this should not crash Mozilla
     23  </span>
     24 </div>
     25 
     26 
     27 </body></html>