tor-browser

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

small-caps-missing-capital-ref.html (588B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <style>
      4 @font-face {
      5  font-family: test;
      6  /* A font that supports the π symbol, but does not have a capital PI;
      7     and supports the µ sign, but does not have a capital MU. */
      8  src: url(../fonts/Prototype.ttf);
      9 }
     10 .test {
     11  font-family: test;
     12  font-size: 24px;
     13  font-variant: small-caps;
     14 }
     15 </style>
     16 
     17 <p>The pi symbol must not be missing:</p>
     18 
     19 <p class=test><span style="font-variant:normal">π</span>-Test</p>
     20 
     21 <p>The micro sign µ must not be missing:</p>
     22 
     23 <p class=test>Is <span style="font-variant:normal">10µs</span> the same as 10ms?</p>