summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-propagation-04.html
blob: 8c9bb9b7e72bcb261eac5840f024a5cdacdc7fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>