mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
tests: Add test for booleans to CSS tests
This commit is contained in:
parent
5e054b37a2
commit
d28816bdba
@ -25,6 +25,9 @@ clean-local:
|
||||
rm $(builddir)/*.out.css || true
|
||||
|
||||
EXTRA_DIST += \
|
||||
boolean.css \
|
||||
boolean.errors \
|
||||
boolean.ref.css \
|
||||
close-at-end-of-file.css \
|
||||
close-at-end-of-file.errors \
|
||||
close-at-end-of-file.ref.css \
|
||||
|
48
tests/css/parser/boolean.css
Normal file
48
tests/css/parser/boolean.css
Normal file
@ -0,0 +1,48 @@
|
||||
a {
|
||||
boolean-property: true;
|
||||
}
|
||||
b {
|
||||
boolean-property: TRUE;
|
||||
}
|
||||
c {
|
||||
boolean-property: tRuE;
|
||||
}
|
||||
d {
|
||||
boolean-property: 1;
|
||||
}
|
||||
e {
|
||||
boolean-property: false;
|
||||
}
|
||||
f {
|
||||
boolean-property: FALSE;
|
||||
}
|
||||
g {
|
||||
boolean-property: FAlsE;
|
||||
}
|
||||
h {
|
||||
boolean-property: 0;
|
||||
}
|
||||
i {
|
||||
boolean-property: trueest;
|
||||
}
|
||||
j {
|
||||
boolean-property: T;
|
||||
}
|
||||
k {
|
||||
boolean-property: tru;
|
||||
}
|
||||
l {
|
||||
boolean-property: 0.0;
|
||||
}
|
||||
m {
|
||||
boolean-property: 1.0;
|
||||
}
|
||||
n {
|
||||
boolean-property: fals;
|
||||
}
|
||||
o {
|
||||
boolean-property: f;
|
||||
}
|
||||
p {
|
||||
boolean-property: FAL;
|
||||
}
|
8
tests/css/parser/boolean.errors
Normal file
8
tests/css/parser/boolean.errors
Normal file
@ -0,0 +1,8 @@
|
||||
boolean.css:26: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:29: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:32: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:35: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:38: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:41: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:44: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
||||
boolean.css:47: error: GTK_CSS_PROVIDER_ERROR_PROPERTY_VALUE
|
31
tests/css/parser/boolean.ref.css
Normal file
31
tests/css/parser/boolean.ref.css
Normal file
@ -0,0 +1,31 @@
|
||||
a {
|
||||
boolean-property: true;
|
||||
}
|
||||
|
||||
b {
|
||||
boolean-property: true;
|
||||
}
|
||||
|
||||
c {
|
||||
boolean-property: true;
|
||||
}
|
||||
|
||||
d {
|
||||
boolean-property: true;
|
||||
}
|
||||
|
||||
e {
|
||||
boolean-property: false;
|
||||
}
|
||||
|
||||
f {
|
||||
boolean-property: false;
|
||||
}
|
||||
|
||||
g {
|
||||
boolean-property: false;
|
||||
}
|
||||
|
||||
h {
|
||||
boolean-property: false;
|
||||
}
|
Loading…
Reference in New Issue
Block a user