summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-004-manual.html
blob: 0419d85f9625f07d439b57ebc72a422ced6a5099 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>text-decoration underline overline</title>
<meta name="assert" content="text-decoration:underline overline; there is an overline and an underline">
<link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#line-decoration">
<!-- cosmetic styling -->
<style>
#htmlsrc { margin: 2em; }
#htmlsrc p {
	font-size: 28px;
	border-radius: 5px;
	line-height: 1.5;
	}
</style>
<!-- the test -->
<style>
div span {
text-decoration:underline overline;
}</style>
</head>
<body>
<p class="instructions">Test passes if there is an overline and an underline.</p>
<div id="htmlsrc">

<div>
<p lang="en"><span>The quick brown fox jumps over the lazy dog.</span></p>
</div>  </div>
</body>
</html>