tor-browser

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

font-003-ref.html (470B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com">
      5 <style>
      6  div {
      7    font: 1in serif;
      8  }
      9  span {
     10    font-variant: small-caps;
     11    font-size: 1in;
     12    font-family: serif;
     13    line-height: 1em;
     14  }
     15 </style>
     16 <body>
     17  <p>Test passes if letters "E" below are larger than this text, are capitalized, and if the left "E" is smaller than the right "E".</p>
     18  <div><span>e</span>E</div>
     19 </body>