summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html')
-rw-r--r--testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html b/testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html
new file mode 100644
index 0000000000..a83506b5e5
--- /dev/null
+++ b/testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<link rel="match" href="currentcolor-visited-fallback-ref.html">
+<title>currentcolor and visited inherited parent color fallback</title>
+<link rel="help" href="https://drafts.csswg.org/css-color-4/#resolving-other-colors">
+<link rel="author" title="Matthieu Dubet" href="https://github.com/mdubet">
+<style>
+body { color: red; }
+div { color: green; }
+a {
+ color: currentcolor;
+}
+</style>
+<div>
+ <a href="">This should be green</a>
+</div>
+<div>
+ <a href="unvisited">This should be green</a>
+</div>