Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/menulist-option-wrap.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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://bu gs.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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698