summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-visited/color-on-visited-text-1-ref.html
blob: b144767ce76e879cf8676f635aa97e0b59492268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<style>
  .unvisited {
    color: blue;
  }
  .visited {
    color: purple;
  }
  .first-line {
    color: green;
  }
</style>
<div class="first-line">Visited</div>
<div class="first-line">Visited with span</div>
<div class="unvisited">Visited with inner unvisited</div>
<div class="visited">Visited with inner visited</div>