tor-browser

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

font-feature-settings-descriptor-02-ref.html (575B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      4 <title>CSS Test: font-feature-settings descriptor</title>
      5 <style>
      6  @font-face {
      7    font-family: "liga1";
      8    src: url('support/fonts/LigatureSymbolsWithSpaces.woff');
      9  }
     10  .ligaOFF {
     11    font-family: liga1;
     12    font-feature-settings: "liga" off;
     13  }
     14 </style>
     15 <body>
     16 <p>Test passes if below line does not have a graph symbol.</p>
     17 <div class="ligaOFF">
     18  <span>This paragraph demonstrates the liga descriptor disabled through the @font-face rule.</span>
     19 </body>
     20 </html>