diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-synthesis-05.html')
-rw-r--r-- | testing/web-platform/tests/css/css-fonts/font-synthesis-05.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-synthesis-05.html b/testing/web-platform/tests/css/css-fonts/font-synthesis-05.html new file mode 100644 index 0000000000..e521e6c67c --- /dev/null +++ b/testing/web-platform/tests/css/css-fonts/font-synthesis-05.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="en"> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<title>CSS Test: font-synthesis: initial value</title> +<link rel="author" title="Chris Lilley" href="chris@w3.org"> +<link rel="match" href="font-synthesis-05-ref.html"> +<link rel="help" href="https://www.w3.org/TR/css-fonts-3/#font-synthesis-prop"> +<meta name="assert" content="This property controls whether user agents are allowed to synthesize bold or oblique font faces"> +<style> + @font-face { + font-family: "test"; + src: url(support/fonts/Lato-Medium.ttf); + } + @supports not (font-synthesis: weight style) { + .test p {color: red;} + } + .test { + font-family: "test"; + font-size: 3em; + font-synthesis: weight style; + color: green; + } +</style> + +<p>Test passes if the text below is green, not red.</p> +<section class="test"> + <p>Filler text</p> + <!-- Synthesis is allowed, but not required --> +</section> |