Mercurial > urweb
view tests/option.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 | 77a28e7430bf |
children |
line wrap: on
line source
datatype option a = None | Some of a val none_Hi : option string = None val some_Hi = Some "Hi" val none_some_Hi : option (option string) = None val some_some_Hi = Some some_Hi val show = fn x => case x of None => "None" | Some x => x val show2 = fn x => case x of None => "None'" | Some x => show x val page = fn x => return <html><body> {cdata (show x)} </body></html> val page2 = fn x => return <html><body> {cdata (show2 x)} </body></html> val main : unit -> transaction page = fn () => return <html><body> <li><a link={page none_Hi}>None1</a></li> <li><a link={page some_Hi}>Some1</a></li> <li><a link={page2 none_some_Hi}>None2</a></li> <li><a link={page2 some_some_Hi}>Some2</a></li> </body></html>