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

Side by Side Diff: LayoutTests/fast/forms/select/listbox-with-display-none-option.html

Issue 189543012: Update <select> when any of its <option> children has "display: none" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 months 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 <!doctype html>
keishi 2014/04/11 15:07:09 We should add tests for - changing style from js a
spartha 2014/04/12 18:53:22 Done.
2 <html>
3 <head>
4 </head>
5 <body>
6 <p>
7 The list box should not display items with display: none. "Four" and "Six" s hould not be displayed in the list.
8 </p>
9 <select size="7">
10 <option>One</option>
11 <option>Two</option>
12 <option>Three</option>
13 <option style="display: none">Four</option>
14 <option>Five</option>
15 <option style="display: none">Six</option>
16 <option>Seven</option>
17 </select>
18 </body>
19 </html>
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698