summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/animation/test/browser_animation_summary-graph_effect-timing-path.js
blob: 6974eab6c60aae6c7f382b1ae44d8b3ac1815c26 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test for following EffectTimingPath component works.
// * element existance
// * path

const TEST_DATA = [
  {
    targetClass: "cssanimation-linear",
  },
  {
    targetClass: "delay-negative",
  },
  {
    targetClass: "easing-step",
    expectedPath: [
      { x: 0, y: 0 },
      { x: 499999, y: 0 },
      { x: 500000, y: 50 },
      { x: 999999, y: 50 },
      { x: 1000000, y: 0 },
    ],
  },
  {
    targetClass: "keyframes-easing-step",
  },
];

add_task(async function () {
  await addTab(URL_ROOT + "doc_multi_timings.html");
  await removeAnimatedElementsExcept(TEST_DATA.map(t => `.${t.targetClass}`));
  const { panel } = await openAnimationInspector();

  for (const { targetClass, expectedPath } of TEST_DATA) {
    const animationItemEl = await findAnimationItemByTargetSelector(
      panel,
      `.${targetClass}`
    );

    info(`Checking effect timing path existance for ${targetClass}`);
    const effectTimingPathEl = animationItemEl.querySelector(
      ".animation-effect-timing-path"
    );

    if (expectedPath) {
      ok(
        effectTimingPathEl,
        "The effect timing path element should be in animation item element"
      );
      const pathEl = effectTimingPathEl.querySelector(
        ".animation-iteration-path"
      );
      assertPathSegments(pathEl, false, expectedPath);
    } else {
      ok(
        !effectTimingPathEl,
        "The effect timing path element should not be in animation item element"
      );
    }
  }
});