summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/summary-text-decoration.html
blob: 80bbd44c46c3b5e07c64eeb959c9642e156eab3f (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>Rendering of summary element with text-decoration</title>
<link rel="match" href="summary-text-decoration-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements">
<meta name="assert" content="Checks that text-decoration applies to rendered summary element.">
<style>
  summary { text-decoration: underline; }
</style>
<details>
  <summary>This text should be underlined.</summary>
</details>