font-palette-19-notref.html (691B)
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 } 18 </style> 19 </head> 20 <body> 21 <div id="target" style="font: 48px 'COLR-test-font'; font-palette: --MyPalette">A</div> 22 </body> 23 </html>