diff options
author | Adam Chlipala <adam@chlipala.net> | 2018-10-19 16:03:57 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2018-10-19 16:03:57 -0400 |
commit | 1a4a8b5ab8eb499ee2217c966f7fbb7716adf9e9 (patch) | |
tree | 531a9fbee277d0d0430ee4b5b9085cf41856ed53 /tests | |
parent | d800556bd50ecb78c21343a288f9475b8b870162 (diff) |
Client-side escaping of HTML should be prepared for structured HTML trees, not just strings (closes #141)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/a_case_of_the_splits.ur | 17 | ||||
-rw-r--r-- | tests/a_case_of_the_splits.urp | 4 |
2 files changed, 21 insertions, 0 deletions
diff --git a/tests/a_case_of_the_splits.ur b/tests/a_case_of_the_splits.ur new file mode 100644 index 00000000..2029729e --- /dev/null +++ b/tests/a_case_of_the_splits.ur @@ -0,0 +1,17 @@ +fun newCounter () : transaction xbody = + x <- source 0; + return <xml> + <dyn signal={n <- signal x; return <xml>{[n]}</xml>}/> + </xml> + +fun main () : transaction page = + ls <- source ([] : list xbody); + return <xml> + <body> + <button value="Add" onclick={fn _ => + l <- get ls; + c <- newCounter (); + set ls (c :: l)}/> + <dyn signal={l <- signal ls; return <xml>{[l]}</xml>}/> + </body> + </xml> diff --git a/tests/a_case_of_the_splits.urp b/tests/a_case_of_the_splits.urp new file mode 100644 index 00000000..b8238bf4 --- /dev/null +++ b/tests/a_case_of_the_splits.urp @@ -0,0 +1,4 @@ +rewrite all A_case_of_the_splits/* + +$/list +a_case_of_the_splits |