Revert "New tets for use of currentColor in @font-palette-values"

This reverts commit e14ed8613f431e528b83f074ce37cf6e22dd95b6.

As discussed in
https://github.com/web-platform-tests/wpt/pull/31517 and
https://github.com/w3c/csswg-drafts/issues/7010
diff --git a/css/css-fonts/font-palette-35-ref.html b/css/css-fonts/font-palette-35-ref.html
deleted file mode 100644
index 5a8078d..0000000
--- a/css/css-fonts/font-palette-35-ref.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<title>Tests use of currentColor in @font-palette-values</title>
-<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
-<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-palette-values">
-<link rel="author" title="Mike Bremford" href="https://bfo.com">
-<style>
-@font-face {
-    font-family: "COLR-test-font";
-    src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
-}
-@font-palette-values --MyPalette {
-    font-family: "COLR-test-font";
-    override-colors: 7 #00FF00;
-}
-
-div {
-    font: 48px 'COLR-test-font';
-    font-palette: --MyPalette;
-}
-</style>
-</head>
-<body>
-<div>A</div>
-</body>
-</html>
diff --git a/css/css-fonts/font-palette-35.html b/css/css-fonts/font-palette-35.html
deleted file mode 100644
index fcd7e29d..0000000
--- a/css/css-fonts/font-palette-35.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<title>Tests use of currentColor in @font-palette-values</title>
-<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
-<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-palette-values">
-<link rel="author" title="Mike Bremford" href="https://bfo.com">
-<link rel="match" href="font-palette-35-ref.html">
-<style>
-@font-face {
-    font-family: "COLR-test-font";
-    src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
-}
-@font-palette-values --MyPalette {
-    font-family: "COLR-test-font";
-    override-colors: 7 currentColor;
-}
-
-div {
-    color: #00FF00;
-    font: 48px 'COLR-test-font';
-    font-palette: --MyPalette;
-}
-</style>
-</head>
-<body>
-<div>A</div>
-</body>
-</html>
diff --git a/css/css-fonts/font-palette-36.html b/css/css-fonts/font-palette-36.html
deleted file mode 100644
index d84a9aa..0000000
--- a/css/css-fonts/font-palette-36.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<title>Tests currentColor in @font-palette-values is inherited as currentColor</title>
-<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
-<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-palette-values">
-<link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
-<link rel="match" href="font-palette-35-ref.html">
-<style>
-@font-face {
-    font-family: "COLR-test-font";
-    src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
-}
-@font-palette-values --MyPalette {
-    font-family: "COLR-test-font";
-    override-colors: 7 currentColor;
-}
-div {
-    color: red;
-    font: 48px 'COLR-test-font';
-    font-palette: --MyPalette;
-}
-span {
-    color: #00FF00;
-}
-
-</style>
-</head>
-<body>
-<div><span>A</span></div>
-</body>
-</html>