blob: 4e34ca39129ed5d57d668e07bc1a7b854a45ad0e [file] [log] [blame]
<html>
<head>
<style>
a:focus { outline-color: green; }
</style>
<script>
window.onload = function() {
document.getElementById("link").focus();
}
</script>
</head>
<body style="background-color: red">
<a id="link" href="#"/>Test</a>
</body>
</html>