chromium/third_party/blink/web_tests/external/wpt/html/rendering/replaced-elements/the-option-element/select-multiple-covered-by-abspos.html

<!doctype html>
<meta charset="utf-8">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1770532">
<link rel="author" href="mailto:[email protected]" 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>