Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-fonts/font-palette-non-ident-font-family.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Tests that a non-ident font family name is handled correctly</title> <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-family-2-desc"> <link rel="author" title="Matthieu Dubet" href="mailto:m_dubet@apple.com"> <link rel="match" href="font-palette-non-ident-font-family-ref.html"> <style> @font-face { font-family: "foo bar"; src: url("resources/COLR-palettes-test-font.ttf") format("truetype"); } @font-palette-values --MyPalette { font-family: "foo bar"; base-palette: 1; } </style> </head> <body> <div style="font: 48px 'foo bar'; font-palette: --MyPalette;">A</div> </body> </html>
/css/css-fonts/font-palette-non-ident-font-family-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Tests that a non-ident font family name is handled correctly</title> <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-family-2-desc"> <style> @font-face { font-family: "COLR-test-font"; src: url("resources/COLR-palettes-test-font.ttf") format("truetype"); } @font-palette-values --MyPalette { font-family: "COLR-test-font"; base-palette: 1; } </style> </head> <body> <div style="font: 48px 'COLR-test-font'; font-palette: --MyPalette;">A</div> </body> </html>