blob: ada5ccab7345d36b08683c7b2aa549ef778dffd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<script>
window.onload = function()
{
document.getElementById("input").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 text input element. This test PASSED if a focus ring is drawn around the text input element (below).</p>
<input id="input" type="text"/>
</body>
</head>
</html>
|