annotate tests/rpcList2.ur @ 2062:795b5b75453c

Add 'role' data attribute. Note, that 'role' attribute is a part of reach ARIA API described here: http://www.w3.org/TR/wai-aria/ Among 'role', it defines lots of aria-* attributes
author Sergey Mironov <grrwlf@gmail.com>
date Mon, 07 Jul 2014 10:05:04 +0400
parents 553a5cc3a4b5
children
rev   line source
adam@1547 1 fun showList l = case l of
adam@1547 2 [] => "[]"
adam@1547 3 | h :: t => strcat (strcat (show h) " :: ") (showList t)
adam@1547 4
adam@1547 5 fun rpcFunc l : transaction string =
adam@1547 6 case l of h :: _ => return (showList h) | [] => return "[]"
adam@1545 7
adam@1545 8 fun main () : transaction page = return <xml><body>
adam@1545 9 <button onclick={
adam@1547 10 s <- rpc (rpcFunc (("foo" :: []) :: []));
adam@1547 11 alert s
adam@1545 12 }/>
adam@1545 13 </body></xml>