annotate tests/docevents.ur @ 2184:1ecef02f67c5
More Elaborate work to avoid instantiating unification variables with out-of-scope regular variables
author |
Adam Chlipala <adam@chlipala.net> |
date |
Sat, 24 Oct 2015 17:23:07 -0400 |
parents |
e8863d9f8c59 |
children |
|
rev |
line source |
adam@1555
|
1 fun main () : transaction page = return <xml>
|
ziv@2130
|
2 <body onload={onDblclick (fn _ => alert "Double click");
|
ziv@2130
|
3 onContextmenu (fn _ => alert "Context menu");
|
ziv@2130
|
4 onKeypress (fn k => alert ("Keypress: " ^ show k.KeyCode))}>
|
adam@1555
|
5 Nothing here.
|
ziv@2130
|
6 </body>
|
adam@1555
|
7 </xml>
|