summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/replaced-elements/the-option-element/select-multiple-covered-by-abspos.html
blob: ed290250dabc69ba9082442e54c2d00dc9771b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<meta charset="utf-8">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1770532">
<link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="match" href="select-multiple-covered-by-abspos-ref.html">
<title>Combobox selects are not stacking contexts by default</title>
<style>
.abspos {
  position: absolute;
  background-color: green;
  height: 300px;
  width: 300px;
}
</style>
<div class="abspos"></div>
<select multiple>
  <option>This text shouldn't be visible.</option>
</select>