Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text Decoration Test: text-underline-offset matches offsets for variable font underline metrics</title>
<meta name="assert" content="text-underline-offset in pixels matches variable metrics">
<link rel="author" title="Dominik Röttsches" href="mailto:drott@chromium.org">
<link rel="match" href="reference/text-underline-offset-variable-ref.html">
<style>
@font-face {
font-family: underline-variable;
src: url(resources/UnderlineTest-VF.ttf);
}
.test {
text-underline-position: from-font;
font-size: 64px;
line-height: 1.8;
}
.close_underline {
text-decoration: underline;
font-family: underline-variable, sans-serif;
/* Start the underline at a calculated whole number value (6px) so that
platform-specific rounding of font information does not interfere with this
test of text-underline-offset. */
font-variation-settings: 'UNDO' 640;
text-underline-offset: -3.84325px;
}
.far_underline {
text-decoration: underline;
font-family: underline-variable, sans-serif;
/* Start the underline at a calculated whole number value (6px) so that
platform-specific rounding of font information does not interfere with this
test of text-underline-offset. */
font-variation-settings: 'UNDO' 640;
text-underline-offset: 3.375px;
}
</style>
</head>
<body>
<p>Test passes if the underlines match the reference.</p>
<div class="test"><span class="close_underline">aagaa</span></div>
<div class="test"><span class="far_underline">aagaa</span></div>
</body>
</html>