annotate tests/invurl.ur @ 2057:f4a6ccb7937f

Allow Body tags inside cformTags This is required by Bootstrap. For example, see http://getbootstrap.com/components/#alerts-dismissible
author Sergey Mironov <grrwlf@gmail.com>
date Sun, 17 Aug 2014 18:28:37 +0000
parents 3621f486ce72
children
rev   line source
adam@1628 1 val r = { F = fn () => return <xml/> }
adam@1628 2
adam@1628 3 fun main () : transaction page = return <xml><body>
adam@1628 4 <a link={r.F ()}>Go</a>
adam@1628 5 </body></xml>
adam@1628 6
adam@1628 7 fun main' (r' : {F : unit -> transaction page}) : transaction page = return <xml><body>
adam@1628 8 <a link={r'.F ()}>Go</a>
adam@1628 9 </body></xml>