chromium/third_party/blink/web_tests/wpt_internal/html/semantics/forms/the-select-element/stylable-select/select-appearance-switching-invalidation-ref.html

<!DOCTYPE html>
<link rel=stylesheet href="resources/stylable-select-styles.css">

<style>
.blue {
  color: blue;
}
</style>

<div id=container class=stylable-select-container>
  <button>button</button>
  <div id=popover popover=auto anchor=container class=stylable-select-datalist>
    <div class="stylable-select-option selected">
      <span class=blue>option</span> one
    </div>
    <div class=stylable-select-option>
      <span class=blue>option</span> two
    </div>
  </div>
</div>

<script>
document.getElementById('popover').showPopover();
</script>