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

"use strict";

// Test for following PauseResumeButton component with spacebar:
// * make animations to pause/resume by spacebar
// * combination with other UI components

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

  info("Checking spacebar makes animations to pause");
  await testPauseAndResumeBySpacebar(animationInspector, panel);

  info(
    "Checking spacebar makes animations to pause when the button has the focus"
  );
  const pauseResumeButton = panel.querySelector(".pause-resume-button");
  await testPauseAndResumeBySpacebar(animationInspector, pauseResumeButton);

  info("Checking spacebar works with other UI components");
  // To pause
  clickOnPauseResumeButton(animationInspector, panel);
  await waitUntilAnimationsPlayState(animationInspector, "paused");
  // To resume
  sendSpaceKeyEvent(animationInspector, panel);
  await waitUntilAnimationsPlayState(animationInspector, "running");
  // To pause
  clickOnCurrentTimeScrubberController(animationInspector, panel, 0.5);
  await waitUntilAnimationsPlayState(animationInspector, "paused");
  // To resume
  clickOnPauseResumeButton(animationInspector, panel);
  await waitUntilAnimationsPlayState(animationInspector, "running");
  // To pause
  sendSpaceKeyEvent(animationInspector, panel);
  await waitUntilAnimationsPlayState(animationInspector, "paused");
  ok(true, "All components that can make animations pause/resume works fine");
});

async function testPauseAndResumeBySpacebar(animationInspector, element) {
  await sendSpaceKeyEvent(animationInspector, element);
  await waitUntilAnimationsPlayState(animationInspector, "paused");
  ok(true, "Space key can pause animations");
  await sendSpaceKeyEvent(animationInspector, element);
  await waitUntilAnimationsPlayState(animationInspector, "running");
  ok(true, "Space key can resume animations");
}