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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test for following AnimationName component works.
// * element existance
// * name text
const TEST_DATA = [
{
targetClass: "cssanimation-normal",
expectedLabel: "cssanimation",
},
{
targetClass: "cssanimation-linear",
expectedLabel: "cssanimation",
},
{
targetClass: "delay-positive",
expectedLabel: "test-delay-animation",
},
{
targetClass: "delay-negative",
expectedLabel: "test-negative-delay-animation",
},
{
targetClass: "easing-step",
},
];
add_task(async function () {
await addTab(URL_ROOT + "doc_multi_timings.html");
await removeAnimatedElementsExcept(TEST_DATA.map(t => `.${t.targetClass}`));
const { panel } = await openAnimationInspector();
for (const { targetClass, expectedLabel } of TEST_DATA) {
const animationItemEl = await findAnimationItemByTargetSelector(
panel,
`.${targetClass}`
);
info(`Checking animation name element existance for ${targetClass}`);
const animationNameEl = animationItemEl.querySelector(".animation-name");
if (expectedLabel) {
ok(
animationNameEl,
"The animation name element should be in animation item element"
);
is(
animationNameEl.textContent,
expectedLabel,
`The animation name should be ${expectedLabel}`
);
} else {
ok(
!animationNameEl,
"The animation name element should not be in animation item element"
);
}
}
});
|