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

Side by Side Diff: third_party/webdriver/test_data/selectPage.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 4 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.or g/TR/html4/loose.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5 <title>Multiple Selection test page</title>
6 </head>
7 <body>
8 <select id="selectWithoutMultiple">
9 <option value="one">one</option>
10 <option value="two" />two</option>
11 </select>
12
13 <select id="selectWithMultipleEqualsMultiple" multiple="multiple">
14 <option selected="selected" label="emmental">Emmental</option>
15 <option label="roquefort">Roquefort</option>
16 <option label="parmigiano">Parmigiano</option>
17 <option label="cheddar">Cheddar</option>
18 </select>
19
20 <select id="selectWithEmptyStringMultiple" multiple="">
21 <option value="one">one</option>
22 <option value="two">two</option>
23 </select>
24
25 <select id="selectWithMultipleWithoutValue" multiple>
26 <option value="one">one</option>
27 <option value="two">two</option>
28 </select>
29
30 <select id="selectWithRandomMultipleValue" multiple="somethingElse">
31 <option value="one">one</option>
32 <option value="two">two</option>
33 </select>
34
35 <select>
36 <optgroup label="Group">
37 <option value="one">one</option>
38 <option id="two-in-group" value="two">two</option>
39 </optgroup>
40 </select>
41 </body>
42 </html>
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/scroll5.html ('k') | third_party/webdriver/test_data/selectableItems.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698