Mercurial > urweb
annotate tests/pathcheck.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 | 78358e5df273 |
children |
rev | line source |
---|---|
adamc@377 | 1 fun ancillary () : transaction page = return <xml/> |
adamc@377 | 2 |
adamc@377 | 3 fun ancillary () = return <xml> |
adamc@377 | 4 Welcome to the ancillary page! |
adamc@377 | 5 </xml> |
adamc@377 | 6 |
adamc@377 | 7 fun main () : transaction page = return <xml><body> |
adamc@377 | 8 <a link={ancillary ()}>Enter the unknown!</a> |
adamc@377 | 9 </body></xml> |