From 7d7b45cac050395a4cf7aaada0186a36db81ab12 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 31 Mar 2017 12:36:33 -0400 Subject: css parser tests: Drop tests for -gtk-gradient No longer needed. --- testsuite/css/parser/Makefile.am | 6 ------ testsuite/css/parser/declarations-valid-19.css | 3 --- testsuite/css/parser/declarations-valid-19.ref.css | 3 --- testsuite/css/parser/declarations-valid-20.css | 5 ----- testsuite/css/parser/declarations-valid-20.ref.css | 3 --- testsuite/css/parser/declarations-valid-21.css | 6 ------ testsuite/css/parser/declarations-valid-21.ref.css | 3 --- 7 files changed, 29 deletions(-) delete mode 100644 testsuite/css/parser/declarations-valid-19.css delete mode 100644 testsuite/css/parser/declarations-valid-19.ref.css delete mode 100644 testsuite/css/parser/declarations-valid-20.css delete mode 100644 testsuite/css/parser/declarations-valid-20.ref.css delete mode 100644 testsuite/css/parser/declarations-valid-21.css delete mode 100644 testsuite/css/parser/declarations-valid-21.ref.css (limited to 'testsuite') diff --git a/testsuite/css/parser/Makefile.am b/testsuite/css/parser/Makefile.am index 2cc81728f7..e691bd23ee 100644 --- a/testsuite/css/parser/Makefile.am +++ b/testsuite/css/parser/Makefile.am @@ -319,12 +319,6 @@ test_data = \ declarations-valid-17.ref.css \ declarations-valid-18.css \ declarations-valid-18.ref.css \ - declarations-valid-19.css \ - declarations-valid-19.ref.css \ - declarations-valid-20.css \ - declarations-valid-20.ref.css \ - declarations-valid-21.css \ - declarations-valid-21.ref.css \ declarations-valid-22.css \ declarations-valid-22.ref.css \ declarations-valid-23.css \ diff --git a/testsuite/css/parser/declarations-valid-19.css b/testsuite/css/parser/declarations-valid-19.css deleted file mode 100644 index 423f672665..0000000000 --- a/testsuite/css/parser/declarations-valid-19.css +++ /dev/null @@ -1,3 +0,0 @@ -* { background-image: -gtk-gradient (linear, - left top, right top, - from (#fff), to (#000)) } diff --git a/testsuite/css/parser/declarations-valid-19.ref.css b/testsuite/css/parser/declarations-valid-19.ref.css deleted file mode 100644 index a95b7538cc..0000000000 --- a/testsuite/css/parser/declarations-valid-19.ref.css +++ /dev/null @@ -1,3 +0,0 @@ -* { - background-image: -gtk-gradient (linear, left top, right top, from (rgb(255,255,255)), to (rgb(0,0,0))); -} diff --git a/testsuite/css/parser/declarations-valid-20.css b/testsuite/css/parser/declarations-valid-20.css deleted file mode 100644 index 10952250c0..0000000000 --- a/testsuite/css/parser/declarations-valid-20.css +++ /dev/null @@ -1,5 +0,0 @@ -* { background-image: -gtk-gradient (linear, - 0.0 0.5, 0.5 1.0, - from (#fff), - color-stop (0.5, #f00), - to (#000)) } diff --git a/testsuite/css/parser/declarations-valid-20.ref.css b/testsuite/css/parser/declarations-valid-20.ref.css deleted file mode 100644 index d9d6c17144..0000000000 --- a/testsuite/css/parser/declarations-valid-20.ref.css +++ /dev/null @@ -1,3 +0,0 @@ -* { - background-image: -gtk-gradient (linear, left center, center bottom, from (rgb(255,255,255)), color-stop (0.5, rgb(255,0,0)), to (rgb(0,0,0))); -} diff --git a/testsuite/css/parser/declarations-valid-21.css b/testsuite/css/parser/declarations-valid-21.css deleted file mode 100644 index 8986615097..0000000000 --- a/testsuite/css/parser/declarations-valid-21.css +++ /dev/null @@ -1,6 +0,0 @@ -* { background-image: -gtk-gradient (radial, - center center, 0.25, - center center, 0.75, - color-stop (0.0,#fff), - color-stop (1.0,#000))} - diff --git a/testsuite/css/parser/declarations-valid-21.ref.css b/testsuite/css/parser/declarations-valid-21.ref.css deleted file mode 100644 index 4495fa6163..0000000000 --- a/testsuite/css/parser/declarations-valid-21.ref.css +++ /dev/null @@ -1,3 +0,0 @@ -* { - background-image: -gtk-gradient (radial, center center, 0.25, center center, 0.75, from (rgb(255,255,255)), to (rgb(0,0,0))); -} -- cgit v1.2.1