diff options
author | Adam Chlipala <adam@chlipala.net> | 2014-04-21 12:09:58 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2014-04-21 12:09:58 -0400 |
commit | eec1cc7a37e04f9c4195ede0233ed773f2e964a9 (patch) | |
tree | 4371c9a659e2c168f1c573831e9ebe42a4fd7397 /tests | |
parent | 1e7619137f25ceb0cef59100bc5a41ffc21a1412 (diff) |
Change <active> to avoid generating an empty <span> for empty content
Diffstat (limited to 'tests')
-rw-r--r-- | tests/activeEmpty.ur | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/activeEmpty.ur b/tests/activeEmpty.ur new file mode 100644 index 00000000..4c089899 --- /dev/null +++ b/tests/activeEmpty.ur @@ -0,0 +1,5 @@ +fun main () : transaction page = return <xml><body> + <active code={alert "Howdy, neighbor!"; return <xml/>}/> + <hr/> + <active code={return <xml>This one <b>ain't</b> empty.</xml>}/> +</body></xml> |