form.html - webdump_tests - Testfiles for webdump
 (HTM) git clone git://git.codemadness.org/webdump_tests
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       form.html (1033B)
       ---
            1 <form>
            2 <fieldset>
            3 <legend>Legendary</legend>
            4 
            5 Text: <input type="text" value="text box" /><br/>
            6 Search: <input type="search" value="search box" /><br/>
            7 Date: <input type="date" value="date box" /><br/>
            8 E-mail: <input type="email" value="email box" /><br/>
            9 Telephone: <input type="tel" value="telephone box" /><br/>
           10 Color: <input type="color" value="color box" /><br/>
           11 Image: <input type="image" value="image box" /><br/>
           12 File: <input type="file" value="file box" /><br/>
           13 
           14 <br/>
           15 
           16 Checkbox: <input type="checkbox" value="checkbox" /><br/>
           17 Checkbox checked: <input type="checkbox" value="checkbox" checked /><br/>
           18 
           19 <br/>
           20 
           21 Radio: <input type="radio" value="radiobox" /><br/>
           22 Radio checked: <input type="radio" value="radiobox" checked /><br/>
           23 
           24 <br/>
           25 
           26 Hidden: <input type="hidden" value="hidden box" /><br/>
           27 
           28 <br/>
           29 
           30 Button: <input type="button" value="button box" /><br/>
           31 Button: <input type="reset" value="reset box" /><br/>
           32 Submit: <input type="submit" value="submit box" /><br/>
           33 
           34 </fieldset>
           35 
           36 </form>
           37 
           38 <hr/>
           39 
           40 <label>Label</label><br/>