summaryrefslogtreecommitdiff
path: root/tests/html/form_inputs.html
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2013-08-30 20:05:48 -0600
committerCarl Meyer <carl@oddbird.net>2013-08-30 20:05:48 -0600
commitd009e5baabc502abe79730b73279e349a4539135 (patch)
tree88aed531d95925f936b65463c7e2695ecd3f9e74 /tests/html/form_inputs.html
parentdcfae9d18833a04f9b7d742fb7d7c6f26eee2923 (diff)
downloadwebtest-d009e5baabc502abe79730b73279e349a4539135.tar.gz
Allow assigning a list to a set of same-named checkboxes.
Diffstat (limited to 'tests/html/form_inputs.html')
-rw-r--r--tests/html/form_inputs.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/html/form_inputs.html b/tests/html/form_inputs.html
index 5f046d9..6333430 100644
--- a/tests/html/form_inputs.html
+++ b/tests/html/form_inputs.html
@@ -36,6 +36,11 @@
<textarea name="textarea">
aaa</textarea>
</form>
+ <form method="POST" id="multiple_checkbox_form">
+ <input type="checkbox" name="checkbox" value="10">
+ <input type="checkbox" name="checkbox" value="20" checked="checked">
+ <input type="checkbox" name="checkbox" value="30">
+ </form>
</body>
</html>