OLD | NEW |
---|---|
(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 | |
OLD | NEW |