blob: 6970b4b13b3c75d155232af979dceefc24584ae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<script>
window.onload = function()
{
document.getElementById("link").focus();
}
</script>
</head>
<body>
<p>Assuming the port-specific theme draws focus rings, this test can be used to ensure that a focus ring is drawn for a hyperlink. This test PASSED if a focus ring is drawn around the hyperlink (below).</p>
<a id="link" href="#" contentEditable="true">Hyperlink</a>
</body>
</head>
</html>
|