font-palette-30.html (1001B)
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-30-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 --MyPalette1 { 17 font-family: "COLR-test-font"; 18 base-palette: 3; 19 } 20 21 @font-palette-values --MyPalette2 { 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';"><div style="display: inline-block; width: 1px; height: 100px;"></div><span style="font-palette: --MyPalette1;">A</span><span style="font-palette: --MyPalette2;">A</span></div> 29 </body> 30 </html>