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