comparison tests/headDyn.ur @ 1728:95d3b4f26f59

Ensure proper ordering of <script> execution, to bring identifiers into scope in time
author Adam Chlipala <adam@chlipala.net>
date Fri, 27 Apr 2012 09:43:09 -0400
parents
children 6817ddd6cf1f
comparison
equal deleted inserted replaced
1727:318ba997a149 1728:95d3b4f26f59
1 fun main () : transaction page =
2 x <- source <xml/>;
3 return <xml>
4 <head>
5 <title>Test</title>
6 </head>
7 <body onload={set x <xml>boo</xml>}>
8 <dyn signal={signal x}/>
9 </body>
10 </xml>