|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
|
2 <title>Test for bug 346337</title> |
|
3 |
|
4 <h3>Text Fields</h3> |
|
5 <input type="text" name="input"> |
|
6 <input type="text" name="spaced 1"> |
|
7 <input> |
|
8 |
|
9 <h3>Checkboxes and Radio buttons</h3> |
|
10 <input type="checkbox" name="check"> Check 1 |
|
11 <input type="checkbox" name="uncheck" checked> Check 2 |
|
12 <p> |
|
13 <input type="radio" name="group" value="1"> Radio 1 |
|
14 <input type="radio" name="group" value="some"> Radio 2 |
|
15 <input type="radio" name="group" checked> Radio 3 |
|
16 |
|
17 <h3>Selects</h3> |
|
18 <select name="any"> |
|
19 <option value="1"> Select 1 |
|
20 <option value="some"> Select 2 |
|
21 <option>Select 3 |
|
22 </select> |
|
23 <select multiple="multiple"> |
|
24 <option value=1> Multi-select 1 |
|
25 <option value=2> Multi-select 2 |
|
26 <option value=3> Multi-select 3 |
|
27 <option value=4> Multi-select 4 |
|
28 </select> |
|
29 |
|
30 <h3>Text Areas</h3> |
|
31 <textarea name="testarea"></textarea> |
|
32 <textarea name="sized one" rows="5" cols="25"></textarea> |
|
33 <textarea></textarea> |
|
34 |
|
35 <h3>File Selector</h3> |
|
36 <input type="file"> |
|
37 <input type="file" multiple> |