haikuwebkit/LayoutTests/fast/forms/textfield-focus-ring.html

16 lines
406 B
HTML

<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>