summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/animation/test/browser_animation_logic_created-time.js
blob: 59e0f4df5261fc3450008d91dbb061b452793ba7 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test whether the created time of animation unchanged even if change node.

add_task(async function () {
  await addTab(URL_ROOT + "doc_custom_playback_rate.html");
  const { animationInspector, inspector } = await openAnimationInspector();

  info("Check both the created time of animation are same");
  const baseCreatedTime =
    animationInspector.state.animations[0].state.createdTime;
  is(
    animationInspector.state.animations[1].state.createdTime,
    baseCreatedTime,
    "Both created time of animations should be same"
  );

  info("Check created time after selecting '.div1'");
  await selectNode(".div1", inspector);
  await waitUntil(
    () =>
      animationInspector.state.animations[0].state.createdTime ===
      baseCreatedTime
  );
  ok(
    true,
    "The created time of animation on element of .div1 should unchanged"
  );

  info("Check created time after selecting '.div2'");
  await selectNode(".div2", inspector);
  await waitUntil(
    () =>
      animationInspector.state.animations[0].state.createdTime ===
      baseCreatedTime
  );
  ok(
    true,
    "The created time of animation on element of .div2 should unchanged"
  );

  info("Check created time after selecting 'body' again");
  await selectNode("body", inspector);
  is(
    animationInspector.state.animations[0].state.createdTime,
    baseCreatedTime,
    "The created time of animation[0] should unchanged"
  );
  is(
    animationInspector.state.animations[1].state.createdTime,
    baseCreatedTime,
    "The created time of animation[1] should unchanged"
  );
});