aboutsummaryrefslogtreecommitdiffstats
path: root/test_harnesses
diff options
context:
space:
mode:
authorPhil Crosby2009-12-31 02:30:15 -0500
committerPhil Crosby2009-12-31 02:30:15 -0500
commit693d1a7a73e58b9e84badc09030d8edf79f2ce1a (patch)
treec96ed899ce3d66dedd68543f42ead169438593d0 /test_harnesses
parent198ef63cbfdcab7f8fef72bf6144964ed5b76cf6 (diff)
downloadvimium-693d1a7a73e58b9e84badc09030d8edf79f2ce1a.tar.bz2
A test harness for fixing bugs related to forms
Diffstat (limited to 'test_harnesses')
-rw-r--r--test_harnesses/form.html35
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