summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/animation/test/browser_animation_summary-graph_negative-end-delay-path.js
blob: 69ce5007b5b1bdf391441aba3b06025472d7a1dd (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

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

const TEST_DATA = [
  {
    targetClass: "enddelay-positive",
  },
  {
    targetClass: "enddelay-negative",
    expectedPath: [
      { x: 500000, y: 0 },
      { x: 500000, y: 50 },
      { x: 750000, y: 75 },
      { x: 1000000, y: 100 },
      { x: 1000000, y: 0 },
    ],
  },
];

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 negative endDelay path existance for ${targetClass}`);
    const negativeEndDelayPathEl = animationItemEl.querySelector(
      ".animation-negative-end-delay-path"
    );

    if (expectedPath) {
      ok(
        negativeEndDelayPathEl,
        "The negative endDelay path element should be in animation item element"
      );
      const pathEl = negativeEndDelayPathEl.querySelector("path");
      assertPathSegments(pathEl, true, expectedPath);
    } else {
      ok(
        !negativeEndDelayPathEl,
        "The negative endDelay path element should not be in animation item element"
      );
    }
  }
});