tor-browser

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

scroll-snap-stop-dynamic-crash.html (404B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1472537">
      3 <style>
      4 div { overflow-y: scroll; }
      5 ::-webkit-scrollbar { width: 10px; }
      6 ::-webkit-scrollbar-corner { }
      7 .crash::-webkit-scrollbar-corner {
      8  scroll-snap-stop: always;
      9 }
     10 </style>
     11 <div id="target"></div>
     12 <script>
     13 document.body.offsetTop;
     14 document.getElementById('target').className = 'crash';
     15 </script>