add form test - webdump_tests - Testfiles for webdump
 (HTM) git clone git://git.codemadness.org/webdump_tests
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit c61107ebfe9e7e5d1d91789f090a5c679a5a2830
 (DIR) parent d03f87a14cbbfd51b022ee04a344e404ad9ec474
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri,  8 Sep 2023 15:07:20 +0200
       
       add form test
       
       Diffstat:
         A tests/form.html                     |      40 +++++++++++++++++++++++++++++++
       
       1 file changed, 40 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/tests/form.html b/tests/form.html
       @@ -0,0 +1,40 @@
       +<form>
       +<fieldset>
       +<legend>Legendary</legend>
       +
       +Text: <input type="text" value="text box" /><br/>
       +Search: <input type="search" value="search box" /><br/>
       +Date: <input type="date" value="date box" /><br/>
       +E-mail: <input type="email" value="email box" /><br/>
       +Telephone: <input type="tel" value="telephone box" /><br/>
       +Color: <input type="color" value="color box" /><br/>
       +Image: <input type="image" value="image box" /><br/>
       +File: <input type="file" value="file box" /><br/>
       +
       +<br/>
       +
       +Checkbox: <input type="checkbox" value="checkbox" /><br/>
       +Checkbox checked: <input type="checkbox" value="checkbox" checked /><br/>
       +
       +<br/>
       +
       +Radio: <input type="radio" value="radiobox" /><br/>
       +Radio checked: <input type="radio" value="radiobox" checked /><br/>
       +
       +<br/>
       +
       +Hidden: <input type="hidden" value="hidden box" /><br/>
       +
       +<br/>
       +
       +Button: <input type="button" value="button box" /><br/>
       +Button: <input type="reset" value="reset box" /><br/>
       +Submit: <input type="submit" value="submit box" /><br/>
       +
       +</fieldset>
       +
       +</form>
       +
       +<hr/>
       +
       +<label>Label</label><br/>