tor-browser

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

border-image-width-001-ref.html (1009B)


      1 <!DOCTYPE html>
      2 
      3  <meta charset="UTF-8">
      4 
      5  <title>CSS Reftest reference</title>
      6 
      7  <style>
      8  div.subtest
      9    {
     10      background-color: green;
     11      height: 120px;
     12      margin: 8px auto 8px 0px;
     13      width: 120px;
     14    }
     15 
     16  div > div
     17    {
     18      background-color: lime;
     19      position: relative;
     20    }
     21 
     22  div#subtest1 > div
     23    {
     24      height: 75px;
     25      left: 15px;
     26      top: 30px;
     27      width: 80px;
     28    }
     29 
     30  div#subtest2 > div
     31    {
     32      height: 60px;
     33      left: 10px;
     34      top: 30px;
     35      width: 100px;
     36    }
     37 
     38  div#subtest3 > div
     39    {
     40      height: 75px;
     41      left: 15px;
     42      top: 30px;
     43      width: 80px;
     44    }
     45 
     46  div#subtest4 > div
     47    {
     48      height: 90px;
     49      left: 25px;
     50      top: 15px;
     51      width: 70px;
     52    }
     53  </style>
     54 
     55  <div class="subtest" id="subtest1"><div></div></div>
     56 
     57  <div class="subtest" id="subtest2"><div></div></div>
     58 
     59  <div class="subtest" id="subtest3" style="height: 135px; width: 110px;"><div></div></div>
     60 
     61  <div class="subtest" id="subtest4"><div></div></div>