tor-browser

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

1936563-1.html (403B)


      1 <!DOCTYPE html>
      2 <style>
      3 .ib {
      4  /* inline-block so we can test several of these side-by-side */
      5  display: inline-block;
      6  margin: 10px;
      7 }
      8 .test {
      9  font-size: 100px;
     10  outline: 5px solid blue;
     11 }
     12 </style>
     13 <div class="ib">
     14  <span class="test"></span>
     15 </div>
     16 <div class="ib">
     17  <span><span class="test"></span></span>
     18 </div>
     19 <div class="ib">
     20  <span><span><span class="test"></span></span></span>
     21 </div>