summaryrefslogtreecommitdiff
path: root/json/tests/draft3/optional/format/color.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft3/optional/format/color.json')
-rw-r--r--json/tests/draft3/optional/format/color.json38
1 files changed, 0 insertions, 38 deletions
diff --git a/json/tests/draft3/optional/format/color.json b/json/tests/draft3/optional/format/color.json
deleted file mode 100644
index 0c0b534..0000000
--- a/json/tests/draft3/optional/format/color.json
+++ /dev/null
@@ -1,38 +0,0 @@
-[
- {
- "description": "validation of CSS colors",
- "schema": { "format": "color" },
- "tests": [
- {
- "description": "a valid CSS color name",
- "data": "fuchsia",
- "valid": true
- },
- {
- "description": "a valid six-digit CSS color code",
- "data": "#CC8899",
- "valid": true
- },
- {
- "description": "a valid three-digit CSS color code",
- "data": "#C89",
- "valid": true
- },
- {
- "description": "an invalid CSS color code",
- "data": "#00332520",
- "valid": false
- },
- {
- "description": "an invalid CSS color name",
- "data": "puce",
- "valid": false
- },
- {
- "description": "a CSS color name containing invalid characters",
- "data": "light_grayish_red-violet",
- "valid": false
- }
- ]
- }
-]