summaryrefslogtreecommitdiffstats
path: root/devtools/client/animationinspector/test/browser_animation_shows_player_on_valid_node.js
blob: 57e6a68fbc5dfc56db43aa1a037d1f7400b0d166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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);

// Test that the panel shows an animation player when an animated node is
// selected.

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

  info("Select node .animated and check that the panel is not empty");
  let node = yield getNodeFront(".animated", inspector);
  yield selectNodeAndWaitForAnimations(node, inspector);

  assertAnimationsDisplayed(panel, 1);
});