Mercurial > urweb
view tests/unpoly.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 | 338be96f8533 |
children |
line wrap: on
line source
val current = return (Some "1") fun resolve (_ : string) = return (Some "2") fun checkDeps deps = u <- current; List.foldlM (fn s (good, errs) => v' <- resolve s; case v' of None => return (False, <xml> {errs} Unknown library path <tt>{[s]}</tt>.<br/> </xml>) | Some v' => b <- return True; if b then return (good, errs) else return (False, <xml> {errs} Access denied to <tt>{[s]}</tt>.<br/> </xml>)) (True, <xml/>) deps fun main () = p <- checkDeps ("a" :: "b" :: []); return <xml><body> {p.2} </body></xml>