wpt / css / css-color / currentcolor-visited-fallback.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-color/currentcolor-visited-fallback.html

<!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>

/css/css-color/currentcolor-visited-fallback-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>currentcolor and visited inherited parent color fallback</title>
<style>
a {
    color: green;
}
</style>
<div>
    <a href="">This should be green</a>
</div>
<div>
    <a href="">This should be green</a>
</div>