summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html
blob: a8d55ace8fce3e01e9c15e354342d298b627c07b (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html class="reftest-wait">
<title>currentColor in color-mix() used in border repaints properly when parent color changes</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://drafts.csswg.org/css-color/#currentcolor-color">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<style>
    #container {
        color: red;
    }

    #container.green {
        color: green;
    }

    #target {
        border: 50px solid color-mix(in hsl, transparent 0%, currentColor 100%);
        width: 0;
    }
</style>

<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>

<div id="container">
    <div id="target"></div>
</div>

<script src="/web-animations/testcommon.js"></script>
<script>
  addEventListener("load", async () => {
    // crbug.com/1378671: Screenshot can be taken while compositor commits are
    // still being deferred for first contentful paint (FCP). Wait for FCP
    // before starting the test.
    await waitForCompositorReady();
    requestAnimationFrame(() => {
      container.classList.add("green");
      requestAnimationFrame(() => {
        document.documentElement.classList.remove("reftest-wait");
      });
    });
  });
</script>
</html>