font-palette-2-ref.html (713B)
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 <style> 10 @font-face { 11 font-family: "COLR-test-font"; 12 src: url("resources/COLR-palettes-test-font.ttf") format("truetype"); 13 } 14 15 @font-palette-values --MyPalette { 16 font-family: "COLR-test-font"; 17 base-palette: 3; 18 } 19 </style> 20 </head> 21 <body> 22 <div id="target" style="font: 48px 'COLR-test-font'; font-palette: --MyPalette;">A</div> 23 </body> 24 </html>