chromium/third_party/blink/web_tests/external/wpt/html/rendering/non-replaced-elements/form-controls/select-fixedpos-crash.html

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