tor-browser

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

scrollbar-vertical-rl.html (719B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>CSS Writing Modes Test: vertical-rl painting with vertical scrollbar</title>
      5 
      6  <link rel="author" title="Aleks Totic" href="atotic@chromium.org" />
      7  <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-flows" title="7.3 Orthogonal flows" />
      8  <link rel="match" href="./reference/scrollbar-vertical-rl-ref.html" />
      9 
     10  <style>
     11    #container {
     12      width: 300px;
     13      height: 200px;
     14      border: 1px solid black;
     15      writing-mode: vertical-rl;
     16      overflow: scroll;
     17      background: red;
     18    }
     19    #target {
     20      width:500px;
     21      background:blue;
     22    }
     23  </style>
     24 </head>
     25 <body>
     26 <div id="container">
     27  <div id="target"><br></div>
     28 </div>
     29 </body>