browser/components/sessionstore/test/browser_formdata_xpath_sample.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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>

mercurial