Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html class="reftest-wait">
2 <head>
4 <style>
6 #opt1 { display: table-footer-group; }
7 #opt1 { visibility: collapse; }
8 #opt1 { overflow: -moz-scrollbars-vertical; }
10 #opt2 { display: table-cell; }
11 #opt2 { clear: left; }
13 select { width: 1px; }
15 </style>
17 <script>
19 function boom()
20 {
21 document.getElementById("opt2").style.clear = "none";
22 document.documentElement.removeAttribute("class");
23 }
25 </script>
27 </head>
29 <body onload="setTimeout(boom, 30);">
31 <select multiple>
32 <option id="opt1">A</option>
33 <option id="opt2">B</option>
34 </select>
36 </body>
37 </html>