blob: 9c6a080bf0125d05c411df6fc9823c2320006240 [file] [log] [blame]
<!doctype html>
<head>
<script>
function test()
{
ta.setSelectionRange(ta.value.length, ta.value.length);
ta.focus();
}
</script>
</head>
<body onload="test()">
Test passes if a focus ring is visible around text area when focused and scrolled to bottom.<br>
<textarea id="ta" rows=2>
1
2
3
4
</textarea>
</body>