367587-1.html (543B)
1 <html class="reftest-wait"> 2 <head> 3 4 <style> 5 6 #opt1 { display: table-footer-group; } 7 #opt1 { visibility: collapse; } 8 #opt1 { overflow: hidden scroll; } 9 10 #opt2 { display: table-cell; } 11 #opt2 { clear: left; } 12 13 select { width: 1px; } 14 15 </style> 16 17 <script> 18 19 function boom() 20 { 21 document.getElementById("opt2").style.clear = "none"; 22 document.documentElement.removeAttribute("class"); 23 } 24 25 </script> 26 27 </head> 28 29 <body onload="setTimeout(boom, 30);"> 30 31 <select multiple> 32 <option id="opt1">A</option> 33 <option id="opt2">B</option> 34 </select> 35 36 </body> 37 </html>