chromium/third_party/blink/web_tests/external/wpt/css/css-color/relative-currentcolor-prophoto-01.html

<!doctype html>
<meta charset=utf-8>
<link rel="match" href="relative-green-ref.html">
<title>currentColor is inherited correctly in prophoto-rgb RCS</title>
<link rel="help" href="https://drafts.csswg.org/css-color-5/#resolving-rcs">
<link rel="author" href="mailto:[email protected]" title="Chris Lilley">
<style>
div {
  width: 100px;
  height: 100px;
  background-color: red;
  color: red;
  background-color: color(from currentColor prophoto-rgb r g b);
}
div div {
  color: green;
  background-color: inherit;
}
</style>
<div>
  <div></div>
</div>