select-fixedpos-crash.html (605B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 4 <link rel=author href="https://mozilla.org" title="Mozilla"> 5 <link rel=help href="https://bugzilla.mozilla.org/show_bug.cgi?id=1741776"> 6 <style> 7 #a { 8 rotate: 1deg 1 0 44; 9 filter: drop-shadow(81px 6px 0px red); 10 } 11 </style> 12 <script> 13 window.onload = function() { 14 document.getElementById("b").appendChild(document.getElementById("c")); 15 } 16 </script> 17 <select id="a" multiple="multiple"> 18 <option id="b">x</option> 19 </select> 20 <div id="c" style="position: fixed; top: 0; left: 0;"> 21 x 22 </div>