370703-1.html 565 B

12345678910111213141516171819202122232425262728293031
  1. <html class="reftest-wait">
  2. <head>
  3. <script>
  4. function boom()
  5. {
  6. document.getElementById("M").style.width = "6em";
  7. document.documentElement.removeAttribute("class");
  8. }
  9. </script>
  10. <body onload="setTimeout(boom, 30);">
  11. <div style="position:absolute; top: 50px; left: 50px; border: 2px solid orange;">
  12. <select>
  13. <option id="M">M</option>
  14. </select>
  15. <br>
  16. <select style="width: 200%">
  17. <option style="visibility: collapse; overflow: auto; display: table-footer-group;">X</option>
  18. </select>
  19. </div>
  20. </body>
  21. </html>