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

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

<style>
:root {
  color-scheme: dark;
}
</style>

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

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