Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text-decor/text-underline-offset-variable.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text Decoration Test: text-underline-offset matches offsets for variable font underline metrics</title> <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#underline-offset"> <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>
/css/css-text-decor/reference/text-underline-offset-variable-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text Decoration Test: text-underline-offset matches offsets for variable font underline metrics</title> <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#underline-offset"> <meta name="assert" content="text-underline-offset in pixels matches variable metrics"> <link rel="author" title="Dominik Röttsches" href="mailto:drott@chromium.org"> <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; font-variation-settings: 'UNDO' 200; } .far_underline { text-decoration: underline; font-family: underline-variable, sans-serif; font-variation-settings: 'UNDO' 1000; } </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>