summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-08-17 15:56:43 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-08-17 15:56:43 -0400
commitc89ba45eeb74aea74999276431f33174f60f4c0c (patch)
tree4ac642ab34465869ba19d120e83b8c270b0547ea /tests
parentae2184ba9f564d2df96edd042a8dc6318f1ba299 (diff)
A new test for <button>
Diffstat (limited to 'tests')
-rw-r--r--tests/button.ur4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/button.ur b/tests/button.ur
new file mode 100644
index 00000000..febcb0c9
--- /dev/null
+++ b/tests/button.ur
@@ -0,0 +1,4 @@
+fun main () : transaction page = return <xml><body>
+ <button onclick={fn _ => alert "AHOY"}><b>CLICK IT</b></button>
+</body></xml>
+