Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / menulist-option-wrap.html
blob6f019b207b5d8df0b9bd92114b84a20e41f3d0fb
1 <style>
2 select { width: 100px; -webkit-appearance: none; }
3 </style>
4 <p>
5 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11362">http://bugs.webkit.org/show_bug.cgi?id=11362</a>
6 Native popup with size="1" wraps options</i>.
7 </p>
8 <p>
9 With <tt>size="1"</tt>:
10 <select size="1">
11 <option>Very long option that does not fit</option>
12 <option>Other</option>
13 </select>
14 </p>
15 <p>
16 Without <tt>size</tt>:
17 <select>
18 <option>Very long option that does not fit</option>
19 <option>Other</option>
20 </select>
21 </p>