Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-option-element/select-multiple-covered-by-abspos.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
<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>