tor-browser

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

chrome-body-overflow-propagation-crash.html (417B)


      1 <!doctype html>
      2 <title>CSS Overflow Test: Chrome scrollbar crash - multiple body elements, removed stylesheet</title>
      3 <style id="sheet">
      4 </style>
      5 <style>
      6  body {
      7    overflow: scroll;
      8    width: 100px;
      9    height: 100px;
     10  }
     11 </style>
     12 <body>Pass if no crash</body>
     13 <script>
     14  document.body.offsetTop;
     15  sheet.remove();
     16  document.documentElement.insertBefore(document.createElement("body"), document.body);
     17 </script>