Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
michael@0 | 2 | <title>Test for bug 346337</title> |
michael@0 | 3 | |
michael@0 | 4 | <h3>Text Fields</h3> |
michael@0 | 5 | <input type="text" name="input"> |
michael@0 | 6 | <input type="text" name="spaced 1"> |
michael@0 | 7 | <input> |
michael@0 | 8 | |
michael@0 | 9 | <h3>Checkboxes and Radio buttons</h3> |
michael@0 | 10 | <input type="checkbox" name="check"> Check 1 |
michael@0 | 11 | <input type="checkbox" name="uncheck" checked> Check 2 |
michael@0 | 12 | <p> |
michael@0 | 13 | <input type="radio" name="group" value="1"> Radio 1 |
michael@0 | 14 | <input type="radio" name="group" value="some"> Radio 2 |
michael@0 | 15 | <input type="radio" name="group" checked> Radio 3 |
michael@0 | 16 | |
michael@0 | 17 | <h3>Selects</h3> |
michael@0 | 18 | <select name="any"> |
michael@0 | 19 | <option value="1"> Select 1 |
michael@0 | 20 | <option value="some"> Select 2 |
michael@0 | 21 | <option>Select 3 |
michael@0 | 22 | </select> |
michael@0 | 23 | <select multiple="multiple"> |
michael@0 | 24 | <option value=1> Multi-select 1 |
michael@0 | 25 | <option value=2> Multi-select 2 |
michael@0 | 26 | <option value=3> Multi-select 3 |
michael@0 | 27 | <option value=4> Multi-select 4 |
michael@0 | 28 | </select> |
michael@0 | 29 | |
michael@0 | 30 | <h3>Text Areas</h3> |
michael@0 | 31 | <textarea name="testarea"></textarea> |
michael@0 | 32 | <textarea name="sized one" rows="5" cols="25"></textarea> |
michael@0 | 33 | <textarea></textarea> |
michael@0 | 34 | |
michael@0 | 35 | <h3>File Selector</h3> |
michael@0 | 36 | <input type="file"> |
michael@0 | 37 | <input type="file" multiple> |