diff options
Diffstat (limited to 'test_harnesses/form.html')
| -rw-r--r-- | test_harnesses/form.html | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/test_harnesses/form.html b/test_harnesses/form.html new file mode 100644 index 00000000..52ac9308 --- /dev/null +++ b/test_harnesses/form.html @@ -0,0 +1,35 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" +  "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +  <title>Page with forms</title> +</head> + +<body> +  <form action="#"> +    <p> +      Text: <input type="text" name="text" value="" /> +    </p> +    <p> +      Search: <input type="search" /> +    </p> +    <p> +      Radio:<br/> +      Maryland<input type="radio" name="group1" value="Maryland"/><br/> +      California<input type="radio" name="group1" value="California"/> +    </p> +    <p> +      <select> +        <option value="Maryland">Maryland</option> +        <option value="California">California</option> +      </select> +    </p> +    <p> +      Button: <input type="button" value="button"/> +    </p> +    <p> +      Submit: <input type="submit" /> +    </p> +  </form> +</body> +</html>
\ No newline at end of file | 
