tor-browser

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

font-synthesis-small-caps-not-applied-ref.html (570B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8"/>
      4 <title>CSS Test: font-synthesis-small-caps with font that supports small-caps</title>
      5 <!--Exo-DemiBold has small caps in the font-->
      6 <style>
      7    @font-face {
      8        font-family: "exo";
      9        src: url(support/fonts/Exo-DemiBold.otf);
     10    }
     11    .test {
     12        font-family: "exo";
     13        font-size: 3em;
     14        font-variant: small-caps;
     15    }
     16 </style>
     17 
     18 <p>Test passes if the two lines below are identical and there is no red.</p>
     19 <section class="test">
     20    <p>Filler text</p>
     21    <p>Filler text</p>
     22 </section>