summaryrefslogtreecommitdiff
path: root/tests/funnyStyles.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/funnyStyles.ur')
-rw-r--r--tests/funnyStyles.ur8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/funnyStyles.ur b/tests/funnyStyles.ur
new file mode 100644
index 0000000..7945a32
--- /dev/null
+++ b/tests/funnyStyles.ur
@@ -0,0 +1,8 @@
+style booboo
+style hoohoo
+
+fun main () : transaction page = return <xml><body>
+ <p class={booboo}>booboo</p>
+ <p class={hoohoo}>hoohoo</p>
+ <p class={null}>null</p>
+</body></xml>