annotate tests/sqlprecision.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 2f33d9a51765
children
rev   line source
adam@1920 1 table t : { N : float }
adam@1920 2
adam@1920 3 fun insert r =
adam@1920 4 dml (INSERT INTO t (N) VALUES ({[readError r.N]}));
adam@1920 5 return <xml/>
adam@1920 6
adam@1920 7 fun main () = return <xml><body>
adam@1920 8 <form>
adam@1920 9 <textbox{#N}/>
adam@1920 10 <submit action={insert}/>
adam@1920 11 </form>
adam@1920 12 </body></xml>