Skip to content

Commit

Permalink
WebKit export: Allow matching of empty font-family names for web fonts (
Browse files Browse the repository at this point in the history
  • Loading branch information
mdubet authored and Lightning00Blade committed Dec 11, 2023
1 parent 0b66671 commit feeb1bf
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
22 changes: 22 additions & 0 deletions css/css-fonts/font-palette-non-ident-font-family-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tests that an empty 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>
24 changes: 24 additions & 0 deletions css/css-fonts/font-palette-non-ident-font-family.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!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>

0 comments on commit feeb1bf

Please sign in to comment.