Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>