Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/form-controls/select-fixedpos-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<style>
#a {
rotate: 1deg 1 0 44;
filter: drop-shadow(81px 6px 0px red);
}
</style>
<script>
window.onload = function() {
document.getElementById("b").appendChild(document.getElementById("c"));
}
</script>
<select id="a" multiple="multiple">
<option id="b">x</option>
</select>
<div id="c" style="position: fixed; top: 0; left: 0;">
x
</div>