mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
274 B
HTML
21 lines
274 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function change_colors()
|
|
{
|
|
document.linkColor = "#009933";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="change_colors()" link="#FF0000">
|
|
|
|
<a href="http://mozilla.org/do_not_visit">unvisited link</a>
|
|
|
|
</body>
|
|
|
|
</html>
|