chromium/third_party/blink/web_tests/external/wpt/css/css-color/currentcolor-001.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: currentcolor</title>
<link rel="author" title="Chris Lilley" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#currentcolor-color">
<link rel="match" href="greensquare-ref.html">
<meta name="assert" content="The keyword currentcolor takes its value from the value of the color property on the same element.">
<style>
    .outer {color: red; background-color: red; font-size: 200%; width: 6em; height: 6em; }
    .inner {color: green; background-color: currentColor; width: 6em; height: 6em; font-weight: bold;}
</style>
<body>
    <p>Test passes if you see a green square, and no red.</p>
    <div class="outer"><div class="inner">FAIL</div></div>
</body>