diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/standard-font-family-8.html')
-rw-r--r-- | testing/web-platform/tests/css/css-fonts/standard-font-family-8.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/standard-font-family-8.html b/testing/web-platform/tests/css/css-fonts/standard-font-family-8.html new file mode 100644 index 0000000000..b64cb8fb4c --- /dev/null +++ b/testing/web-platform/tests/css/css-fonts/standard-font-family-8.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com"/> +<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#standard-font-families"/> +<link rel="mismatch" href="standard-font-family-8-notref.html"/> +<meta name="assert" content="ui-serif's bold in @font-face isn't synthetic"/> +<style> +@font-face { + font-family: "AppleSystemUISerif"; + src: local("ui-serif"); +} +</style> +</head> +<body> +<div> +<div style="display: inline-block; font: bold 72px 'AppleSystemUISerif'; font-synthesis: none;">HeJllo</div> +</div> +</body> +</html> |