diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-12-21 14:25:46 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-12-21 14:25:46 -0500 |
commit | 1f298c385fc198dc9c5a84c103116d8c76a25ef3 (patch) | |
tree | a009e27451e8192eef06d552229b8b1455730960 /testsuite | |
parent | e567f23bcddeb223da1fb8e53c137824676ec9df (diff) | |
download | gtk+-1f298c385fc198dc9c5a84c103116d8c76a25ef3.tar.gz |
Drop the css parser enum test
We are no longer using and non-css properties, and css enums
are all parsed with custom code.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/css/parser/enum.css | 32 | ||||
-rw-r--r-- | testsuite/css/parser/enum.errors | 6 | ||||
-rw-r--r-- | testsuite/css/parser/enum.ref.css | 7 |
3 files changed, 0 insertions, 45 deletions
diff --git a/testsuite/css/parser/enum.css b/testsuite/css/parser/enum.css deleted file mode 100644 index 8416e93bf0..0000000000 --- a/testsuite/css/parser/enum.css +++ /dev/null @@ -1,32 +0,0 @@ -a { - enum-property: in; -} - -b { - enum-property: none; -} - -c { - enum-property: 2; -} - -d { - enum-property: "in"; -} - -e { - enum-property: non-existing; -} - -f { - enum-property: "non-existing"; -} - -g { - enum-property: 34; -} - -h { - enum-property: 12e; -} - diff --git a/testsuite/css/parser/enum.errors b/testsuite/css/parser/enum.errors deleted file mode 100644 index 22f528935d..0000000000 --- a/testsuite/css/parser/enum.errors +++ /dev/null @@ -1,6 +0,0 @@ -enum.css:10: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -enum.css:14: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -enum.css:18: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -enum.css:22: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -enum.css:26: error: GTK_CSS_PROVIDER_ERROR_SYNTAX -enum.css:30: error: GTK_CSS_PROVIDER_ERROR_SYNTAX diff --git a/testsuite/css/parser/enum.ref.css b/testsuite/css/parser/enum.ref.css deleted file mode 100644 index ea6c44ef52..0000000000 --- a/testsuite/css/parser/enum.ref.css +++ /dev/null @@ -1,7 +0,0 @@ -a { - enum-property: in; -} - -b { - enum-property: none; -} |