diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-05-06 13:07:13 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-05-06 13:07:13 -0400 |
commit | 4387731e477e2af050841f916a03f5d8a975a164 (patch) | |
tree | c05d904bc4318b2c43116218f2844479cc71e3fc /tests/css.ur | |
parent | 44d64f9ce5ee0c4f4bce154ec2bd7f93bb26356b (diff) |
Simplify type of Basis.tag, regarding 'class' attribute; new compatibility parsing of 'class' values given as string literals
Diffstat (limited to 'tests/css.ur')
-rw-r--r-- | tests/css.ur | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/css.ur b/tests/css.ur index 4218aaae..04d3a701 100644 --- a/tests/css.ur +++ b/tests/css.ur @@ -1,6 +1,10 @@ style st1 style st2 +style st_3 fun main () = return <xml><body> <span title="Whoa" class={classes st1 st2}>Hi!</span> + <span class="st-3 st2">Bye!</span> + <span class="st1">Appendix!</span> + <span class="">Sequel!</span> </body></xml> |