summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-select-element/stylable-select/select-appearance-no-button-no-datalist-ref.html
blob: 3c6e9416b06aeb9ecaa2a9dbf56c1c1e7c1ad2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<link rel=stylesheet href="resources/stylable-select-styles.css">

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

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