summaryrefslogtreecommitdiff
path: root/tests/ccheckbox.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-11-24 11:41:52 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2011-11-24 11:41:52 -0500
commit915ff8e78538d9e3c16c7e2b247a27a424f71d40 (patch)
tree849664203b1d550567b19e83399e2684e468864e /tests/ccheckbox.ur
parent8cfdf845683157b756f485ea91c3fc3f2a2697c6 (diff)
Catch more <ccheckbox> events
Diffstat (limited to 'tests/ccheckbox.ur')
-rw-r--r--tests/ccheckbox.ur8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ccheckbox.ur b/tests/ccheckbox.ur
new file mode 100644
index 00000000..09a8ece9
--- /dev/null
+++ b/tests/ccheckbox.ur
@@ -0,0 +1,8 @@
+fun main () : transaction page =
+ s <- source True;
+ t <- source 1;
+ return <xml><body><ccheckbox source={s} onclick={set t 3}/>
+ <dyn signal={s <- signal s;
+ t <- signal t;
+ return <xml>{[s]} {[t]}</xml>}/>
+ </body></xml>