mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
22 lines
293 B
HTML
22 lines
293 B
HTML
<!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>
|