tor-browser

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

scrolling-vertical-rl.html (418B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <style>
      4  html {
      5      writing-mode: vertical-rl;
      6      overflow: hidden;
      7      background: red;
      8  }
      9  body {
     10      margin: 0;
     11  }
     12 </style>
     13 <div style="block-size:100px;"></div>
     14 <div style="block-size:100px; background:green;"></div>
     15 <div style="block-size:1000px;"></div>
     16 <script>
     17  window.scrollTo(-100, 0);
     18 </script>