summaryrefslogtreecommitdiff
path: root/toolkit/devtools/animationinspector/test/doc_frame_script.js
blob: 51fc720a7db1e2c8576700673f9f0773efe1406a (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
58
59
60
61
62
63
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// A helper frame-script for brower/devtools/animationinspector tests.

/**
 * Toggle (play or pause) one of the animation players of a given node.
 * @param {Object} data
 * - {Number} animationIndex The index of the node's animationPlayers to play or pause
 * @param {Object} objects
 * - {DOMNode} node The node to use
 */
addMessageListener("Test:ToggleAnimationPlayer", function(msg) {
  let {animationIndex, pause} = msg.data;
  let {node} = msg.objects;

  let player = node.getAnimationPlayers()[animationIndex];
  if (pause) {
    player.pause();
  } else {
    player.play();
  }

  sendAsyncMessage("Test:ToggleAnimationPlayer");
});

/**
 * Set a given style property value on a node. This is useful to dynamically
 * change an animation's duration or delay for instance.
 * @param {Object} data
 * - {String} propertyName The name of the property to set.
 * - {String} propertyValue The value for the property.
 * @param {Object} objects
 * - {DOMNode} node The node to use
 */
addMessageListener("Test:SetNodeStyle", function(msg) {
  let {propertyName, propertyValue} = msg.data;
  let {node} = msg.objects;

  node.style[propertyName] = propertyValue;

  sendAsyncMessage("Test:SetNodeStyle");
});

/**
 * Get the current playState of an animation player on a given node.
 * @param {Object} data
 * - {Number} animationIndex The index of the node's animationPlayers to check
 * @param {Object} objects
 * - {DOMNode} node The node to check
 */
addMessageListener("Test:GetAnimationPlayerState", function(msg) {
  let {animationIndex} = msg.data;
  let {node} = msg.objects;

  let player = node.getAnimationPlayers()[animationIndex];
  player.ready.then(() => {
    sendAsyncMessage("Test:GetAnimationPlayerState", player.playState);
  });
});