summaryrefslogtreecommitdiff
path: root/tests/formLimit.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/formLimit.ur')
-rw-r--r--tests/formLimit.ur11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/formLimit.ur b/tests/formLimit.ur
new file mode 100644
index 00000000..d591f736
--- /dev/null
+++ b/tests/formLimit.ur
@@ -0,0 +1,11 @@
+fun handler r = return <xml><body>
+ {[r.A]}, {[r.B]}
+</body></xml>
+
+fun main () = return <xml><body>
+ <form>
+ <textbox{#A}/>
+ <textbox{#B}/>
+ <submit action={handler}/>
+ </form>
+</body></xml>