tests: Add CSS test checking that we don't need a semicolon
This commit is contained in:
@ -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
|
||||
|
||||
4
tests/css/parser/no-semicolon.css
Normal file
4
tests/css/parser/no-semicolon.css
Normal file
@ -0,0 +1,4 @@
|
||||
foo {
|
||||
color: rgb(255,255,255)
|
||||
}
|
||||
bar { color: rgb(0,0,0) }
|
||||
7
tests/css/parser/no-semicolon.ref.css
Normal file
7
tests/css/parser/no-semicolon.ref.css
Normal file
@ -0,0 +1,7 @@
|
||||
foo {
|
||||
color: rgb(255,255,255);
|
||||
}
|
||||
|
||||
bar {
|
||||
color: rgb(0,0,0);
|
||||
}
|
||||
Reference in New Issue
Block a user