wpt / css / css-text-decor / text-decoration-propagation-04.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-propagation-04.html

<!DOCTYPE html>
<title>CSS Test: text-decoration propagation</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
<link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#line-decoration">
<link rel="help" href="https://github.com/servo/servo/issues/29654">
<link rel="match" href="reference/text-decoration-propagation-04-ref.html">
<style>
div { margin: 1em 0 }
</style>
<div style="text-decoration: underline">
  lorem
  <div style="text-decoration: overline">
    ipsum
  </div>
  dolor
  <div style="text-decoration: overline">
    sit
    <div style="text-decoration: line-through">
      amet
    </div>
    consectetur
  </div>
  adipiscing
</span>

/css/css-text-decor/reference/text-decoration-propagation-04-ref.html

<!DOCTYPE html>
<title>CSS Test reference: text-decoration propagation</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
<link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#line-decoration">
<style>
div { margin: 1em 0 }
</style>
<div style="text-decoration: underline">
  lorem
</div>
<div style="text-decoration: underline overline">
  ipsum
</div>
<div style="text-decoration: underline">
  dolor
</div>
<div style="text-decoration: underline overline">
  sit
</div>
<div style="text-decoration: underline overline line-through">
  amet
</div>
<div style="text-decoration: underline overline">
  consectetur
</div>
<div style="text-decoration: underline">
  adipiscing
</div>