summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/currentcolor-visited-fallback.html
blob: a83506b5e581ac28a4864b47426e30d796f6d3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>