tor-browser

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

font-face-style-default-variable.html (809B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8"/>
      4 <title>CSS Test: Support for font-style: auto in @font-face</title>
      5 <link rel="match" href="font-face-style-default-variable-ref.html">
      6 <link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" />
      7 <meta name="assert" content="auto is default value for font-style in @font-face descriptor">
      8 <style>
      9    @font-face {
     10        font-family: "Inter";
     11        src: url('support/fonts/Inter-VF.subset.ttf') format('truetype');
     12        font-display: swap;
     13    }
     14    .style10 {
     15        font-family: "Inter";
     16        font-size: 3em;
     17        font-style: oblique 10deg;
     18    }
     19    .style0 {
     20        font-family: "Inter";
     21        font-size: 3em;
     22        font-style: oblique 0deg;
     23    }
     24 </style>
     25 
     26 <p class="style10">text</p>
     27 <p class="style0">text</p>