diff options
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.html | 24 |
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..8b52bf04d0 --- /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="mismatch" href="font-palette-empty-font-family-notref.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 ''; color-palette: --MyPalette;">A</div> +</body> +</html> |