diff --git a/testsuite/css/parser/Makefile.am b/testsuite/css/parser/Makefile.am index 57b11162f6..39f3e9fafc 100644 --- a/testsuite/css/parser/Makefile.am +++ b/testsuite/css/parser/Makefile.am @@ -179,9 +179,6 @@ test_data = \ background-shorthand-single.ref.css \ background-size.css \ background-size.ref.css \ - boolean.css \ - boolean.errors \ - boolean.ref.css \ border.css \ border.errors \ border.ref.css \ diff --git a/testsuite/css/parser/boolean.css b/testsuite/css/parser/boolean.css deleted file mode 100644 index 6773140c05..0000000000 --- a/testsuite/css/parser/boolean.css +++ /dev/null @@ -1,48 +0,0 @@ -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; -} diff --git a/testsuite/css/parser/boolean.errors b/testsuite/css/parser/boolean.errors deleted file mode 100644 index 93dcca5d35..0000000000 --- a/testsuite/css/parser/boolean.errors +++ /dev/null @@ -1,8 +0,0 @@ -boolean.css:26: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:29: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:32: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:35: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:38: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:41: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:44: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -boolean.css:47: error: GTK_CSS_PROVIDER_ERROR_SYNTAX diff --git a/testsuite/css/parser/boolean.ref.css b/testsuite/css/parser/boolean.ref.css deleted file mode 100644 index 1cc348dcdf..0000000000 --- a/testsuite/css/parser/boolean.ref.css +++ /dev/null @@ -1,31 +0,0 @@ -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; -}