From 12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 1 Nov 2017 18:17:08 -0400 Subject: Remove all outdated CSS tests. --- .../xhtml1/reference/support/Ahem.ttf | Bin 12480 -> 0 bytes .../xhtml1/reference/support/ahem.css | 4 ---- .../xhtml1/reference/support/color-green-ref.html | 13 ------------- .../xhtml1/reference/support/color-green-ref.xht | 13 ------------- .../reference/support/external-variable-declaration.css | 5 ----- .../reference/support/external-variable-font-face.css | 15 --------------- .../reference/support/external-variable-reference.css | 6 ------ .../reference/support/external-variable-supports.css | 4 ---- 8 files changed, 60 deletions(-) delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/Ahem.ttf delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/ahem.css delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.html delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.xht delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-declaration.css delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-font-face.css delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-reference.css delete mode 100644 tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-supports.css (limited to 'tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support') diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/Ahem.ttf b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/Ahem.ttf deleted file mode 100644 index ac81cb03165..00000000000 Binary files a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/Ahem.ttf and /dev/null differ diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/ahem.css b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/ahem.css deleted file mode 100644 index 82ee466791e..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/ahem.css +++ /dev/null @@ -1,4 +0,0 @@ -@font-face { - font-family: "Ahem"; - src: url(./Ahem.ttf); -} diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.html b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.html deleted file mode 100644 index 628466d5c2a..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.html +++ /dev/null @@ -1,13 +0,0 @@ - -CSS Reftest Reference - - -

This text must be green.

- \ No newline at end of file diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.xht b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.xht deleted file mode 100644 index 9165afafe48..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/color-green-ref.xht +++ /dev/null @@ -1,13 +0,0 @@ - -CSS Reftest Reference - - -

This text must be green.

- \ No newline at end of file diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-declaration.css b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-declaration.css deleted file mode 100644 index 9ba1b9d3288..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-declaration.css +++ /dev/null @@ -1,5 +0,0 @@ -p { - color: red; - --a: green; - color: var(--a); -} diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-font-face.css b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-font-face.css deleted file mode 100644 index 87f0609ba3d..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-font-face.css +++ /dev/null @@ -1,15 +0,0 @@ -@font-face { - --a: MyTestFontName; - font-family: var(--a); - src: url(./Ahem.ttf); -} -@font-face { - font-family: MyTestFontName2; - src: url(./Ahem.ttf); -} -#a { - font-family: MyTestFontName, serif; -} -#b { - font-family: MyTestFontName2, serif; -} diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-reference.css b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-reference.css deleted file mode 100644 index 0c697fdcf91..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-reference.css +++ /dev/null @@ -1,6 +0,0 @@ -:root { - --a: green; -} -p { - color: var(--a); -} diff --git a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-supports.css b/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-supports.css deleted file mode 100644 index 96582bfd8f1..00000000000 --- a/tests/wpt/css-tests/css-variables-1_dev/xhtml1/reference/support/external-variable-supports.css +++ /dev/null @@ -1,4 +0,0 @@ -body { color: red; } -@supports (color:var(--a)) { - p { color: green; } -} -- cgit v1.2.3