summaryrefslogtreecommitdiffstats
path: root/devtools/client/animationinspector/test/browser_animation_timeline_shows_time_info.js
blob: f330e880e18abfb42fb2adbe10c6e1a35c60f0c3 (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
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

requestLongerTimeout(2);

// Check that the timeline displays animations' duration, delay iteration
// counts and iteration start in tooltips.

add_task(function* () {
  yield addTab(URL_ROOT + "doc_simple_animation.html");
  let {panel, controller} = yield openAnimationInspector();

  info("Getting the animation element from the panel");
  let timelineEl = panel.animationsTimelineComponent.rootWrapperEl;
  let timeBlockNameEls = timelineEl.querySelectorAll(".time-block .name");

  // Verify that each time-block's name element has a tooltip that looks sort of
  // ok. We don't need to test the actual content.
  [...timeBlockNameEls].forEach((el, i) => {
    ok(el.hasAttribute("title"), "The tooltip is defined for animation " + i);

    let title = el.getAttribute("title");
    if (controller.animationPlayers[i].state.delay) {
      ok(title.match(/Delay: [\d.-]+s/), "The tooltip shows the delay");
    }
    ok(title.match(/Duration: [\d.]+s/), "The tooltip shows the duration");
    if (controller.animationPlayers[i].state.endDelay) {
      ok(title.match(/End delay: [\d.-]+s/), "The tooltip shows the endDelay");
    }
    if (controller.animationPlayers[i].state.iterationCount !== 1) {
      ok(title.match(/Repeats: /), "The tooltip shows the iterations");
    } else {
      ok(!title.match(/Repeats: /), "The tooltip doesn't show the iterations");
    }
    if (controller.animationPlayers[i].state.easing) {
      ok(title.match(/Easing: /), "The tooltip shows the easing");
    }
    if (controller.animationPlayers[i].state.fill) {
      ok(title.match(/Fill: /), "The tooltip shows the fill");
    }
    if (controller.animationPlayers[i].state.direction) {
      ok(title.match(/Direction: /), "The tooltip shows the direction");
    }
    ok(!title.match(/Iteration start:/),
      "The tooltip doesn't show the iteration start");
  });
});