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

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

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