tests: Add CSS test checking that we don't need a semicolon

This commit is contained in:
Benjamin Otte
2011-04-07 12:14:58 +02:00
parent 8fd6bd323c
commit 224d65032e
3 changed files with 13 additions and 0 deletions

View File

@ -27,4 +27,6 @@ clean-local:
EXTRA_DIST += \
does-not-exist.css \
does-not-exist.ref.css \
no-semicolon.css \
no-semicolon.ref.css \
simple.css

View File

@ -0,0 +1,4 @@
foo {
color: rgb(255,255,255)
}
bar { color: rgb(0,0,0) }

View File

@ -0,0 +1,7 @@
foo {
color: rgb(255,255,255);
}
bar {
color: rgb(0,0,0);
}