wpt / css / css-text-decor / text-decoration-subelements-005.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-text-decor/text-decoration-subelements-005.html

<!DOCTYPE html>
<title>Test case for text-decoration with subelements</title>
<meta name="assert" content="Test decorations propagate to block-in-inline, as in the EXAMPLE 1 of the spec">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-underline-position-property">
<link rel="match" href="reference/text-decoration-subelements-005-ref.html">
<style>
div {
  text-decoration: underline;
}
span {
  display: block;
}
</style>
<div>
  From EXAMPLE 1 of the spec.
  <span>
    This text is also underlined,
    as it is in an in-flow block to which the underline is propagated.
  </span>
</div>

/css/css-text-decor/reference/text-decoration-subelements-005-ref.html

<!DOCTYPE html>
<style>
div {
  text-decoration: underline;
}
span {
  text-decoration: underline;
  display: block;
}
</style>
<div>
  From EXAMPLE 1 of the spec.
</div>
<span>
  This text is also underlined,
  as it is in an in-flow block to which the underline is propagated.
</span>