summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-visited/link-root-1.xhtml
blob: a22f85418798be6546dd7b60bdc448141fd3db52 (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
<?xml version="1.0"?>
<!DOCTYPE html>
<a xmlns="http://www.w3.org/1999/xhtml"
   href="http://www.example-notvisited.tld" class="reftest-wait">
<style>
<![CDATA[

a { display: block; width: 100%; height: 100% }

:link { background: red }
:visited { background: green }

]]>
</style>
<script>
<![CDATA[

var a = document.documentElement;
getComputedStyle(a, "").backgroundColor; // flush style
a.href = "visited-page.html";
getComputedStyle(a, "").backgroundColor; // flush style
document.documentElement.removeAttribute("class");

]]>
</script>
</a>