chromium/content/test/data/accessibility/html/custom-select-simple.html

<!--
@BLINK-ALLOW:focus*
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@BLINK-ALLOW:haspopup*
@BLINK-ALLOW:expanded
@BLINK-ALLOW:htmlTag*
@BLINK-ALLOW:class*
-->
<!DOCTYPE html>
<html>
<head>
<style>
  select { appearance: base-select; }
</style>
</head>

<body>
<select aria-label="Fruit" autofocus>
  <option selected>Apple</option>
  <option>Orange</option>
  <option>Banana</option>
</select>
</body>
</html>