tests: Add CSS test for comment detection

Tests recent fix.
This commit is contained in:
Benjamin Otte
2012-11-28 21:11:22 +01:00
parent 7f3595a6be
commit 29c8420746
3 changed files with 20 additions and 0 deletions

View File

@ -184,6 +184,8 @@ EXTRA_DIST += \
colors-errors.ref.css \
colors-red.css \
colors-red.ref.css \
comment-detection.css \
comment-detection.ref.css \
cross-fade-basic.css \
css-21-malformed-declarations.css \
css-21-malformed-declarations.errors \

View File

@ -0,0 +1,11 @@
/*/
a { color: blue; }
*/
/*\*/
b { color: inherit; }
/* */
/**/
c { color: inherit; }
/* */

View File

@ -0,0 +1,7 @@
b {
color: inherit;
}
c {
color: inherit;
}