diff options
author | John Mark Bell <jmb@netsurf-browser.org> | 2009-03-28 12:17:52 +0000 |
---|---|---|
committer | John Mark Bell <jmb@netsurf-browser.org> | 2009-03-28 12:17:52 +0000 |
commit | b6a51f75d25498c991b5855973e63cac912b01d1 (patch) | |
tree | 68f149323ef8bf1c69954697b63418eb1f8c4308 /test/data/lex | |
parent | bdbeafe860345ea717694907f8508b6b712caf1b (diff) | |
download | libcss-b6a51f75d25498c991b5855973e63cac912b01d1.tar.gz libcss-b6a51f75d25498c991b5855973e63cac912b01d1.tar.bz2 |
A couple of tests for CSS 2.1 issue 85 ('\'[\n\r(\r\n)] is not an escape sequence outside a string). We pass these, anyway, but it's worth ensuring that.
svn path=/trunk/libcss/; revision=6965
Diffstat (limited to 'test/data/lex')
-rw-r--r-- | test/data/lex/tests1.dat | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/data/lex/tests1.dat b/test/data/lex/tests1.dat index 86bad2b..5a9c173 100644 --- a/test/data/lex/tests1.dat +++ b/test/data/lex/tests1.dat @@ -614,3 +614,24 @@ IDENT: EOF #reset +#data +tes\ +t +#expected +IDENT:tes +CHAR:\ +S +IDENT:t +S +EOF +#reset + +#data +"tes\ +t" +#expected +STRING:tes\nt +S +EOF +#reset + |