summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html')
-rw-r--r--testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html b/testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html
new file mode 100644
index 0000000000..eb69f8fbc8
--- /dev/null
+++ b/testing/web-platform/tests/css/css-fonts/font-palette-empty-font-family.html
@@ -0,0 +1,24 @@
+<!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">
+<link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com">
+<link rel="match" href="font-palette-empty-font-family-ref.html">
+<style>
+@font-face {
+ font-family: "";
+ src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
+}
+
+@font-palette-values --MyPalette {
+ font-family: "";
+ base-palette: 1;
+}
+</style>
+</head>
+<body>
+<div style="font: 48px ''; font-palette: --MyPalette;">A</div>
+</body>
+</html>