diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-01-11 10:41:38 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-01-11 10:41:38 -0500 |
commit | d71a90ca23170fd7fef9ad0f9ccf6afc01d3f372 (patch) | |
tree | 78e67b40776c15813d38f98e1ca793a30a4a4792 /tests/ooo.ur | |
parent | 23a1c7d1de76762465f90635a5e31f58b46fe611 (diff) |
Do proper insertion of dynamic content within nested DOM containers
Diffstat (limited to 'tests/ooo.ur')
-rw-r--r-- | tests/ooo.ur | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ooo.ur b/tests/ooo.ur new file mode 100644 index 00000000..5401fa70 --- /dev/null +++ b/tests/ooo.ur @@ -0,0 +1,8 @@ +fun main () : transaction page = + s <- source "Hi"; + return <xml><body> + <form> + <textbox{#A} source={s}/> + Change it up! + </form> + </body></xml> |