Sign in
chromium
/
chromium
/
src.git
/
20e8909e694cab857da21d8fe9d5f1da170eaae2
/
.
/
chrome
/
test
/
data
/
select.html
blob: ceb23149a21940c5849075f5ca94f224f2bb1349 [
file
]
<!DOCTYPE html>
<html>
<body>
<select>
<option
selected
>
Apple
</option>
<option>
Orange
</option>
<option>
Banana
</option>
</select>
<script>
document
.
querySelector
(
'select'
).
focus
();
</script>
</body>
</html>