tor-browser

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

font-features-across-space-3.html (1754B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>CSS Test: ligatures should match across spaces</title>
      5 <link rel="author" title="John Daggett" href="mailto:jdaggett@mozilla.com"/>
      6 <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-variant-ligatures-prop"/>
      7 <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop"/>
      8 <link rel="match" href="font-features-across-space-1-ref.html"/>
      9 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
     10 <meta name="assert" content="Ligature features should be handled across spaces with interacting font feature properties"/>
     11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     12 <style type="text/css">
     13 @font-face {
     14  font-family: ligsym;
     15  src: url(support/fonts/LigatureSymbolsWithSpaces.woff);
     16  font-feature-settings: "liga" 0;
     17 }
     18 
     19 td {
     20  padding: 10px 5px;
     21 }
     22 
     23 .test {
     24  font-family: ligsym;
     25  font-size: 150%;
     26  font-variant-ligatures: none;
     27  font-feature-settings: "liga" on;
     28 }
     29 </style>
     30 </head>
     31 
     32 <body>
     33 
     34 <table>
     35 <tr><td>calendar</td><td class="test">calendar</td></tr>
     36 <tr><td>daily calendar</td><td class="test">daily calendar</td></tr>
     37 <tr><td>align left</td><td class="test">align left</td></tr>
     38 <tr><td>align center</td><td class="test">align center</td></tr>
     39 <tr><td>align right</td><td class="test">align right</td></tr>
     40 <tr><td>volume</td><td class="test">volume</td></tr>
     41 <tr><td>volume down</td><td class="test">volume down</td></tr>
     42 <tr><td>volume up</td><td class="test">volume up</td></tr>
     43 <tr><td>zoom in</td><td class="test">zoom in</td></tr>
     44 <tr><td>zoom out</td><td class="test">zoom out</td></tr>
     45 <tr><td>heart</td><td class="test">heart</td></tr>
     46 <tr><td>heart empty</td><td class="test">heart empty</td></tr>
     47 </table>
     48 
     49 </body>
     50 </html>