annotate tests/activeFocus.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 56b8efff64e7
children
rev   line source
adam@1790 1 fun main () : transaction page =
adam@1790 2 i <- fresh;
adam@1790 3 return <xml><body>
adam@1790 4 <ctextbox/>
adam@1790 5 <ctextbox id={i}/>
adam@1790 6 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 7 </body></xml>
adam@1790 8
adam@1790 9 fun dynamic () : transaction page =
adam@1790 10 x <- source <xml/>;
adam@1790 11 return <xml><body>
adam@1790 12 <dyn signal={signal x}/>
adam@1790 13 <button onclick={fn _ => i <- fresh; set x <xml>
adam@1790 14 <ctextbox/>
adam@1790 15 <ctextbox id={i}/>
adam@1790 16 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 17 </xml>}/>
adam@1790 18 </body></xml>