1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26

content / test / data / site_isolation / page-with-select.html [blame]

<!DOCTYPE html>
<style>
select {
  position:absolute;
  top:9px;
  left:9px;
  height:25px;
  width:80px;
}
</style>
<script>

function focusSelectMenu() {
  document.querySelector('select').focus();
}

</script>
<html>
<body>
<select>
  <option selected>Apple</option>
  <option>Orange</option>
  <option>Banana</option>
</select>
</body>
</html>