Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/bindings/the-select-element-0/listbox-abspos-descendant.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Absolutely positioned descendants of a listbox select render</title>
<link rel="match" href="listbox-abspos-descendant-ref.html">
<style>
select {
appearance: none;
border: 1px solid black;
padding: 0;
background: white;
width: 60px;
border-radius: 0;
}
</style>
<select size="2" style="position:relative">
<option>a</option>
<div style="position:absolute; inset:0; background:green"></div>
</select>