summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-select-element/stylable-select/select-appearance-writing-mode-vertical-lr-ref.html
blob: 8b7e6402fb8d26872bb9bd6bf9869390638a64f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<link rel=stylesheet href="resources/stylable-select-styles.css">

<style>
html {
  writing-mode: vertical-lr;
}
</style>

<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>