tor-browser

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

font-palette-34.html (858B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Tests for font-palette and @font-palette-values</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
      7 <link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-palette-values">
      8 <link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com">
      9 <link rel="match" href="font-palette-34-ref.html">
     10 <style>
     11 @font-face {
     12    font-family: "COLR-test-font";
     13    src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
     14 }
     15 
     16 @font-palette-values --MyPalette {
     17    font-family: "COLR-test-font";
     18    base-palette: 1;
     19 }
     20 
     21 @font-palette-values --MyPaLeTte {
     22    font-family: "COLR-test-font";
     23    base-palette: 2;
     24 }
     25 </style>
     26 </head>
     27 <body>
     28 <div id="target" style="font: 48px 'COLR-test-font'; font-palette: --MyPalette;">A</div>
     29 </body>
     30 </html>