blob: ceb23149a21940c5849075f5ca94f224f2bb1349 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<select>
<option selected>Apple</option>
<option>Orange</option>
<option>Banana</option>
</select>
<script>
document.querySelector('select').focus();
</script>
</body>
</html>