summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/nested-color-mix-with-currentcolor.html
blob: 2f24d62b547fb24200fa659d27a9e55777303aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<title>CSS Color: Nested color-mix() with currentColor</title>
<link rel="help" href="https://www.w3.org/TR/css-color-5/#color-mix">
<link rel="help" href="https://www.w3.org/TR/css-color-5/#resolving-color-values">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #parent {
    color: red;
    background-color: color-mix(in lch, color-mix(in lch, black, currentColor), black);
  }
  #child {
    color: black;
    background-color: inherit;
  }
</style>
<div id="parent">
  <div id="child"></div>
</div>
<script>
  test(() => {
    assert_equals(getComputedStyle(child).backgroundColor, "lch(0 0 none)");
  }, "Nested color-mix function with inner currentColor should inherit unresolved");
</script>