diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-values/lh-unit-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-values/lh-unit-002.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-values/lh-unit-002.html b/testing/web-platform/tests/css/css-values/lh-unit-002.html new file mode 100644 index 0000000000..316637a18a --- /dev/null +++ b/testing/web-platform/tests/css/css-values/lh-unit-002.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Values and Units Test: using lh in font-size</title> +<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"> +<link rel="help" href="https://drafts.csswg.org/css-values-4/#font-relative-lengths"> +<link rel="match" href="../reference/ref-filled-green-100px-square.xht"> +<meta name="assert" content="The lh unit resolves against the parent when used in the font-size property."> +<style> +div { + width: 100px; + height: 100px; + background: red; + line-height: 50px; +} +aside { + background: green; + height: 1em; + line-height: 42px; /* number doesn't matter, as long as it's neither 50 nor 100*/ + font-size: 2lh; +} + +</style> + +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> + +<div><aside> </aside></div> |