Mercurial > urweb
annotate tests/textarea.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 | 71bafe66dbe1 |
children |
rev | line source |
---|---|
adamc@152 | 1 val handler = fn x => <html><body> |
adamc@152 | 2 You entered: {cdata x.A} |
adamc@152 | 3 </body></html> |
adamc@152 | 4 |
adamc@152 | 5 val main = fn () => <html><body> |
adamc@152 | 6 <lform> |
adamc@152 | 7 <ltextarea{#A}/> |
adamc@152 | 8 <submit action={handler}/> |
adamc@152 | 9 </lform> |
adamc@152 | 10 </body></html> |