wpt / css / css-text-decor / text-decoration-decorating-box-001.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-text-decor/text-decoration-decorating-box-001.html

<!DOCTYPE html>
<title>Test decorating box when the first child has `vertical-align`</title>
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#decorating-box">
<link rel="match" href="reference/text-decoration-decorating-box-001-ref.html">
<div>abc
  <u>
    <span style="vertical-align: -10px; color: transparent">x</span>
    def
  </u>
</div>

/css/css-text-decor/reference/text-decoration-decorating-box-001-ref.html

<!DOCTYPE html>
<div>abc
  <u>
    <span style="color: transparent">x</span>
    def
  </u>
</div>