summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-marker-end-aligned.tentative.html
blob: c2540acb368c7b945f13b454d1190c8780c27a48 (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>
<!-- Tests that <selectlist> marker is end-aligned -->
<link rel=author href="mailto:pkotwicz@chromium.org">
<link rel="match" href="selectlist-marker-end-aligned-ref.tentative.html">

<style>
div {
  width:300px;
  display:flex;
  justify-content:flex-end;
}
selectlist {
  width:200px;
}
selectlist::part(button) {
  border-style:none;
  background-color:rgba(0,0,0,0)
}
</style>
<div>
<selectlist>
  <option></option>
</selectlist>