tor-browser

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

scrollbar-vertical-rl-ref.html (491B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>CSS Writing Modes Test: vertical-rl painting with vertical scrollbar reference</title>
      5  <link rel="author" title="Aleks Totic" href="atotic@chromium.org" />
      6  <style>
      7    #container {
      8      width: 300px;
      9      height: 200px;
     10      border: 1px solid black;
     11      writing-mode: vertical-rl;
     12      overflow: scroll;
     13      background: blue;
     14    }
     15    #target {
     16      width:500px;
     17    }
     18  </style>
     19 <div id="container">
     20  <div id="target"><br></div>
     21 </div>