Mercurial > urweb
annotate tests/setActive.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 | 3d823d8424cc |
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> |