367587-1.html 554 B

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