File indexing completed on 2024-11-17 04:18:54
0001 <html> 0002 <head> 0003 <title>Form save restore test</title> 0004 </head> 0005 <body> 0006 0007 <form name="testform"> 0008 <label for="testedit">Enter text:</label> 0009 <input type="text" name="testinputtext" id="testedit"> 0010 <br> 0011 <label>Check this box</label> 0012 <input type="checkbox" name="testinputcheckbox" value="checked"> 0013 <br> 0014 <label>File to upload:</label> 0015 <input type="file" name="testinputfile"> 0016 <br> 0017 <input type="radio" name="testinputradio" value="one">One</input> 0018 <br> 0019 <input type="radio" name="testinputradio" value="two">Two</input> 0020 <br> 0021 <input type="radio" name="testinputradio" value="three">Three</input> 0022 <br> 0023 </form> 0024 0025 <p> 0026 Enter some text in the box below:<br/> 0027 <textarea name="testtextarea"></textarea> 0028 </p> 0029 0030 <p> 0031 Disabled text area:<br/> 0032 <textarea name="testtextarea" disabled></textarea> 0033 </p> 0034 0035 <p> 0036 Read only text area:<br/> 0037 <textarea name="testtextarea" readonly>This is a read only text area.</textarea> 0038 </p> 0039 0040 <p> 0041 Text area with spell check disabled:<br/> 0042 <textarea name="testtextarea" spellcheck="false"></textarea> 0043 </p> 0044 0045 <p> 0046 Choose one: 0047 <select name="testcombobox"> 0048 <option>First</option> 0049 <option>Second</option> 0050 <option>Third</option> 0051 <option>Fourth</option> 0052 <option>Fifth</option> 0053 </select> 0054 </p><p/> 0055 0056 <p> 0057 Select one or more items:<br/> 0058 <select name="testlist" multiple> 0059 <option>One</option> 0060 <option>Two</option> 0061 <option>Three</option> 0062 <option>Four</option> 0063 <option>Five</option> 0064 </select> 0065 </p> 0066 0067 </body> 0068 </html>