tor-browser

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

chrome-bug-346264227-crash.html (473B)


      1 <!DOCTYPE html>
      2 <title>Chrome crash bug 346264227</title>
      3 <link rel="help" href="https://crbug.com/346264227">
      4 <style>
      5  @container (width = 0px) {
      6    #inner {
      7      display: none;
      8    }
      9  }
     10 </style>
     11 <div style="container-type: inline-size">
     12  <div id="inner" style="container-type: inline-size; display: none"><span></span></div>
     13 </div>
     14 <script>
     15  document.body.offsetTop;
     16  document.body.style.width = 0;
     17  inner.style.display = "";
     18  document.body.offsetTop;
     19 </script>