summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/color-initial-canvastext.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-color/color-initial-canvastext.html')
-rw-r--r--testing/web-platform/tests/css/css-color/color-initial-canvastext.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-color/color-initial-canvastext.html b/testing/web-platform/tests/css/css-color/color-initial-canvastext.html
new file mode 100644
index 0000000000..97ea2b7b68
--- /dev/null
+++ b/testing/web-platform/tests/css/css-color/color-initial-canvastext.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<title>CSS Color 4: Initial value of the color property</title>
+<link rel="help" href="https://drafts.csswg.org/css-color/#the-color-property">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style>
+ #ref { color: canvastext }
+ #initial { color: initial }
+</style>
+<div id="ref"></div>
+<div id="initial"></div>
+<script>
+ const canvastext = getComputedStyle(ref).color;
+
+ test(() => {
+ assert_equals(getComputedStyle(document.documentElement).color, canvastext);
+ }, "Check that the resolved value for the initial color on the root element matches canvastext.");
+
+ test(() => {
+ assert_equals(getComputedStyle(initial).color, canvastext);
+ }, "Check that the resolved value of an explicit color:initial matches canvastext.");
+</script>