tor-browser

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

keyboard-scroll-child-frame-iframe.html (321B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>:root with overscroll-behavior:none prevents scroll propagation from child frame</title>
      4 <style>
      5 :root {
      6  overscroll-behavior-y: none;
      7 }
      8 
      9 body {
     10  margin: 0;
     11  font-family: sans-serif;
     12 }
     13 
     14 .content {
     15  height: 400vh;
     16  background: red;
     17 }
     18 </style>
     19 <div class="content"></div>