diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/parsing/font-synthesis-style-valid.html')
-rw-r--r-- | testing/web-platform/tests/css/css-fonts/parsing/font-synthesis-style-valid.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/parsing/font-synthesis-style-valid.html b/testing/web-platform/tests/css/css-fonts/parsing/font-synthesis-style-valid.html new file mode 100644 index 0000000000..5b1c01561a --- /dev/null +++ b/testing/web-platform/tests/css/css-fonts/parsing/font-synthesis-style-valid.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>CSS Fonts Module Level 4: parsing font-synthesis-style with valid values</title> +<link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-synthesis-style"> +<meta name="assert" content="font-synthesis-style supports the full grammar 'auto | none'."> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/css/support/parsing-testcommon.js"></script> +</head> +<body> +<script> +test_valid_value('font-synthesis-style', 'auto'); +test_valid_value('font-synthesis-style', 'none'); +</script> +</body> +</html> |