summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/color-002.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-color/color-002.html')
-rw-r--r--testing/web-platform/tests/css/css-color/color-002.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-color/color-002.html b/testing/web-platform/tests/css/css-color/color-002.html
new file mode 100644
index 0000000000..7d2f5b318e
--- /dev/null
+++ b/testing/web-platform/tests/css/css-color/color-002.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Color 4: color property, initial value</title>
+<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
+<link rel="help" href="https://drafts.csswg.org/css-color-4/#the-color-property">
+<link rel="match" href="blacktext-ref.html">
+<meta name="assert" content="The initial value of this property is black.">
+<style>
+ .test {color: initial}
+</style>
+<body>
+ <p class="test">Test passes if this text is black</p>
+</body>