blob: 660c56bc5fcd457c821ad3eb5a1da151d7ea5354 [file] [log] [blame]
<!DOCTYPE html>
<body>
<div style="width:100px; overflow:scroll;">
<div style="width:1000px;">
<input><input value=abc autofocus style="width:64px;">
</div>
</div>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
document.querySelectorAll('input')[1].addEventListener('focus', function(event) {
event.target.select();
testRunner.notifyDone();
}, false);
} else {
console.log('Require testRunner.');
}
</script>
</body>