Mercurial > urweb
comparison tests/css.ur @ 1749:f9e5a8e09cdf
Simplify type of Basis.tag, regarding 'class' attribute; new compatibility parsing of 'class' values given as string literals
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 06 May 2012 13:07:13 -0400 |
parents | a671c986f517 |
children | 277480862cef |
comparison
equal
deleted
inserted
replaced
1748:95dd9f427bb2 | 1749:f9e5a8e09cdf |
---|---|
1 style st1 | 1 style st1 |
2 style st2 | 2 style st2 |
3 style st_3 | |
3 | 4 |
4 fun main () = return <xml><body> | 5 fun main () = return <xml><body> |
5 <span title="Whoa" class={classes st1 st2}>Hi!</span> | 6 <span title="Whoa" class={classes st1 st2}>Hi!</span> |
7 <span class="st-3 st2">Bye!</span> | |
8 <span class="st1">Appendix!</span> | |
9 <span class="">Sequel!</span> | |
6 </body></xml> | 10 </body></xml> |