summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/color-mix-basic-001-ref.html
blob: 7296d17fba3bd7b45769cbed12e954509ee85eac (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
44
45
46
47
48
49
50
<!doctype html>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<style>
.ref { width: 14em; height: 1em; margin-top: 0; margin-bottom: 0;}
</style>
<body>
<div id="ref"></div>
<script>
const TEST_CASES = [
  ["blue", "red"],
  ["blue", "green"],
  ["rgb(255, 0, 0, .2)", "red"],
  ["blue", "red", 0.9],
  ["blue", "red", 0],
  ["currentColor", "white"],
  ["currentColor", "rgba(0, 0, 0, .5)"],
];

const refElement = document.getElementById("ref");
const refStyle = getComputedStyle(refElement);

let animation = null;

for (let [from, to, animationProgress] of TEST_CASES) {
  const animationProgressExplicit = animationProgress !== undefined;
  animationProgress = animationProgressExplicit ? animationProgress : 0.5;
  // Set up the ref.
  if (animation) {
    animation.cancel();
  }
  animation = refElement.animate({
    backgroundColor: [from, to],
  }, { duration: 1000 });
  animation.pause();
  animation.currentTime = 1000 * animationProgress;

  let results = animationProgress == 0.5 ? 4 : 3;

  for (let i = 0; i < results; ++i) {
    let element = document.createElement("div")
    element.classList.add('ref')
    element.style.backgroundColor = refStyle.backgroundColor;
    document.body.appendChild(element)
  }
}

refElement.remove()
</script>
</body>