summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text-decoration/dynamic-underline-vertical-align-standards-1-ref.html
blob: 01ba4d9b6c961d5f578aa0566a74ac0f87ed9098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<style>
.underline {
  text-decoration: underline;
}
.align-bottom {
  vertical-align: bottom;
}
.align-top {
  vertical-align: top;
}
</style>
</head>
<body>
<p class="underline">
<span class="align-bottom">This</span> line has a bottom vertical align span. <br />
<span class="align-top">This</span> line has a top vertical align span.
</p>
</body>
</html>