tor-browser

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

chrome-bug-385317081-crash.html (458B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://issues.chromium.org/issues/385317081">
      3 <div style="position: absolute;">
      4  <div id="target" style="container-type: inline-size;">
      5    <div style="position: fixed;"></div>
      6  </div>
      7 </div>
      8 <script>
      9 document.body.offsetTop;
     10 
     11 const target = document.getElementById('target');
     12 target.children[0].remove();
     13 
     14 const fixed = document.createElement('div');
     15 fixed.style.position = 'fixed';
     16 target.append(fixed);
     17 </script>