Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div { width: 0 }
6 option { white-space: normal }
7 optgroup { white-space: normal }
8 </style>
9 </head>
10 <body>
11 <div>
12 <select>
13 <optgroup>
14 <option>This is option one</option>
15 <option>This is option two</option>
16 <option>This is option three which is long</option>
17 <option>This is option four</option>
18 </optgroup>
19 </select>
20 </div>
21 <div>
22 <select size="3">
23 <optgroup>
24 <option>This is option one</option>
25 <option>This is option two</option>
26 <option>This is option three which is long</option>
27 <option>This is option four</option>
28 </optgroup>
29 </select>
30 <div>
31 </body>
32 </html>