tor-browser

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

font-face-weight-auto-static.html (697B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8"/>
      4 <title>CSS Test: Support for font-weight: auto in @font-face</title>
      5 <link rel="match" href="font-face-weight-auto-static-ref.html">
      6 <link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" />
      7 <meta name="assert" content="font-weight: auto applies initial value for non-variable fonts in @font-face descriptor">
      8 <style>
      9    @font-face {
     10        font-family: "Lato";
     11        src: url('/fonts/Lato-Medium.ttf') format('truetype');
     12        font-display: swap;
     13        font-weight: auto;
     14    }
     15    .test {
     16        font-family: "Lato";
     17        font-size: 3em;
     18        font-weight: bold;
     19    }
     20 </style>
     21 
     22 <p class="test">text</p>