OLD | NEW |
1 <style> | 1 <style> |
2 select { width: 100px; -webkit-appearance: none; } | 2 select { width: 100px; -webkit-appearance: none; } |
3 </style> | 3 </style> |
4 <p> | 4 <p> |
5 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11362">http://bu
gs.webkit.org/show_bug.cgi?id=11362</a> | 5 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11362">http://bu
gs.webkit.org/show_bug.cgi?id=11362</a> |
6 Native popup with size="1" wraps options</i>. | 6 Native popup with size="1" wraps options</i>. |
7 </p> | 7 </p> |
8 <p> | 8 <p> |
9 With <tt>size="1"</tt>: | 9 With <tt>size="1"</tt>: |
10 <select size="1"> | 10 <select size="1"> |
11 <option>Very long option that does not fit</option> | 11 <option>Very long option that does not fit</option> |
12 <option>Other</option> | 12 <option>Other</option> |
13 </select> | 13 </select> |
14 </p> | 14 </p> |
15 <p> | 15 <p> |
16 Without <tt>size</tt>: | 16 Without <tt>size</tt>: |
17 <select> | 17 <select> |
18 <option>Very long option that does not fit</option> | 18 <option>Very long option that does not fit</option> |
19 <option>Other</option> | 19 <option>Other</option> |
20 </select> | 20 </select> |
21 </p> | 21 </p> |
OLD | NEW |