summaryrefslogtreecommitdiff
path: root/tests/dynList.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-05-04 12:33:44 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-05-04 12:33:44 -0400
commit2527fe34a9b8d01e2245c5812441a6da2a799ad8 (patch)
tree3afebbab38c1bef5a1f8774e3032365283ba985e /tests/dynList.ur
parent03769b32eeb1568fdd5cdf5b34a001fe473b931e (diff)
Fix dynClass for non-<body> contexts
Diffstat (limited to 'tests/dynList.ur')
-rw-r--r--tests/dynList.ur22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/dynList.ur b/tests/dynList.ur
new file mode 100644
index 00000000..09b3ee4c
--- /dev/null
+++ b/tests/dynList.ur
@@ -0,0 +1,22 @@
+fun main () =
+ b <- source True;
+ let
+ fun textboxList xs = <xml>
+ <table>
+ {List.mapX (fn src => <xml><tr>
+ <td dynClass={return null} dynStyle={b <- signal b;
+ if b then
+ return (STYLE "width: 500px")
+ else
+ return (STYLE "width: 100px")}>
+ <ctextbox source={src}/>
+ </td></tr></xml>) xs}
+ </table>
+ </xml>
+ in
+ s <- source "foo";
+ return <xml><body>
+ <ccheckbox source={b}/>
+ {textboxList (s :: s :: [])}
+ </body></xml>
+ end