summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/99850-1a.html
blob: fc6a7f92a7ec2a3034a053a7bf5479c8484e2a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">

function change_colors()
{
  document.linkColor = "#FF0000";
  document.linkColor = "#009933";
}

</script>
</head>

<body onload="change_colors()">

<a href="http://mozilla.org/do_not_visit">unvisited link</a>

</body>

</html>