summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-visited/selector-adj-sibling-2.html
blob: 0eee73c51765289b16d0fa28bd8a349379c4a2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<title>Test for privacy restrictions on :visited (Bug 147777)</title>
<style>

a { text-decoration: none }
:link + :link { color: olive; }
:visited + :link { color: red; }
:link + :visited { color: fuchsia; }
:visited + :visited { color: red; }

</style>
<a href="unvisited-page.html"></a><a href="unvisited-page.html">unvisited + unvisited</a>
<a href="unvisited-page.html"></a><a href="visited-page.html">unvisited + visited</a>
<a href="visited-page.html"></a><a href="unvisited-page.html">visited + unvisited</a>
<a href="visited-page.html"></a><a href="visited-page.html">visited + visited</a>