tor-browser

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

849407-1-ref.html (452B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="UTF-8">
      5  <style>
      6    legend {
      7      width: 200px;
      8      height: 100px;
      9      overflow: scroll;
     10      border: 2px dashed gray;
     11    }
     12    div.child {
     13      background: lightblue;
     14      height: 1000px;
     15    }
     16  </style>
     17 </head>
     18 <body>
     19  <fieldset>
     20    <legend>
     21      <div class="child">
     22        There should be scrollbars making this area scrollable.
     23      </div>
     24    </legend>
     25  </fieldset>
     26 </body>
     27 </html>