chromium/content/test/data/accessibility/event/menulist-custom-focus.html

<!DOCTYPE html>
<html>
<head>
<style>
  select { appearance: base-select; }
</style>
</head>
<body>
<select>
  <option>Apple</option>
  <option>Orange</option>
  <option>Banana</option>
</select>
<script>
  function go() {
    document.querySelector('select').focus();
  }
</script>
</body>
</html>