Mercurial > urweb
view tests/tail.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 | d80734855790 |
children |
line wrap: on
line source
fun one () = return 1 fun addEm n = if n = 0 then return 0 else n1 <- rpc (one ()); n2 <- addEm (n - 1); return (n1 + n2) fun addEm' n acc = if n = 0 then return acc else n1 <- rpc (one ()); addEm' (n - 1) (n1 + acc) fun main () = s <- source 0; s' <- source 0; return <xml><body onload={n <- addEm 3; set s n; n <- addEm' 4 0; set s' n; alert "Welcome!"}> <dyn signal={n <- signal s; return (txt n)}/> <dyn signal={n <- signal s'; return (txt n)}/> </body></xml>