fune/testing/web-platform/tests/css/css-values/ch-unit-004.html
Tim Nguyen 0db5ec8c29 Bug 1850292 [wpt PR 41658] - Add fuzziness to 2 css-values tests, a=testonly
Automatic update from web-platform-tests
Add fuzziness to 2 css-values tests (#41658)

--

wpt-commits: 0b5b24fb2741ab2ee35039600e7fd38b8288c2ff
wpt-pr: 41658
2023-09-13 11:38:00 +00:00

38 lines
1.1 KiB
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Values and Units Test: support for the ch unit</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<link rel="help" href="https://drafts.csswg.org/css-values-3/#font-relative-lengths">
<link rel="match" href="reference/ch-unit-001-ref.html">
<meta name="assert" content="In vertical sideways, The ch unit is equal to the used horizontal advance measure of the 0 (ZERO, U+0030) glyph found in the font used to render it.">
<meta name="fuzzy" content="maxDifference=0-28; totalPixels=0-9">
<style>
span {
background: green;
color: green;
left: 0; right: 0;
position: absolute;
}
div {
background: red;
color: red;
position: relative;
height: 5ch;
width: 10ch;
writing-mode: vertical-rl;
text-orientation: sideways;
}
div + div {
height: auto;
}
div + div span {
height: 5ch;
}
</style>
<body>
<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
<div><span>00000</span></div>
<div><span></span>00000</div>
</body>