summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-visited/color-on-text-decoration-1-ref.html
blob: 9bdc6fa8d8cbf8f119bbb0249d3b7cb11ef8338d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<title>Test for privacy restrictions on :visited (Bug 147777)</title>
<style type="text/css">

body > span { text-decoration: underline }
body > span > span { text-decoration: overline }
body > span > span > span { text-decoration: line-through }

.link { color: olive }
.link > span { color: fuchsia }
.link > span > span { color: black }
.visited { color: gray }
.visited > span { color: maroon }
.visited > span > span { color: purple }

</style>
<span class="link"><span><span>unvisited</span></span></span>
<span class="visited"><span><span>visited</span></span></span>