Mercurial > urweb
annotate tests/ccheckbox.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 | 37f5a23446b2 |
children |
rev | line source |
---|---|
adam@1610 | 1 fun main () : transaction page = |
adam@1610 | 2 s <- source True; |
adam@1610 | 3 t <- source 1; |
adam@1610 | 4 return <xml><body><ccheckbox source={s} onclick={set t 3}/> |
adam@1610 | 5 <dyn signal={s <- signal s; |
adam@1610 | 6 t <- signal t; |
adam@1610 | 7 return <xml>{[s]} {[t]}</xml>}/> |
adam@1610 | 8 </body></xml> |