summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-underline-wavy-covers-whole-line-length-001.html
blob: 9ff8cd00b2d514efda5bad117d2751dc8749c178 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Decoration Test: Wavy underline covers the whole line length</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-line-property">
<meta name="assert" content="Checks that a wavy underline covers the whole line length.">
<link rel="mismatch" href="reference/text-decoration-wavy-covers-whole-line-length-001-notref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  body {
    overflow: hidden;
  }
  #wrapper {
    position: absolute;
    margin: 100px;
  }
  #decoration {
    font: 400px/1 Ahem;
    color: transparent;
    text-decoration-line: underline;
    text-decoration-color: green;
    text-decoration-style: wavy;
    text-decoration-skip-ink: none;
  }
  #abspos {
    position: absolute;
    left: -100px;
    top: -100px;
    width: 480px;
    height: 1000px;
    background: white;
  }
</style>
<p>The test passes if you see some green below (the end of a wavy green text decoration).</p>
<div id="wrapper">
  <div id="decoration">X</div>
  <div id="abspos"></div>
</div>