Mercurial > urweb
annotate tests/setActive.ur @ 1792:3d823d8424cc
Disallow suspending operations in <active code={...}>
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Mon, 23 Jul 2012 09:03:41 -0400 |
parents | |
children |
rev | line source |
---|---|
adam@1792 | 1 fun main () : transaction page = |
adam@1792 | 2 i <- fresh; |
adam@1792 | 3 x <- source <xml/>; |
adam@1792 | 4 return <xml> |
adam@1792 | 5 <body> |
adam@1792 | 6 <dyn signal={signal x} /> |
adam@1792 | 7 <active code={set x <xml><ctextbox/><ctextbox id={i}/><ctextbox/><active code={giveFocus i; return <xml/>}/></xml>; return <xml/>}/> |
adam@1792 | 8 </body> |
adam@1792 | 9 </xml> |