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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test the following animated property name component features:
// * name of property
// * display compositor sign when the property was running on compositor.
// * display warning when the property is runnable on compositor but was not.
const TEST_DATA = [
{
property: "opacity",
isOnCompositor: true,
},
{
property: "transform",
isWarning: true,
},
{
property: "width",
},
];
add_task(async function () {
await addTab(URL_ROOT + "doc_simple_animation.html");
await removeAnimatedElementsExcept([".compositor-notall"]);
const { panel } = await openAnimationInspector();
info("Checking animated property name component");
const animatedPropertyNameEls = panel.querySelectorAll(
".animated-property-name"
);
is(
animatedPropertyNameEls.length,
TEST_DATA.length,
`Number of animated property name elements should be ${TEST_DATA.length}`
);
for (const [
index,
animatedPropertyNameEl,
] of animatedPropertyNameEls.entries()) {
const { property, isOnCompositor, isWarning } = TEST_DATA[index];
info(`Checking text content for ${property}`);
const spanEl = animatedPropertyNameEl.querySelector("span");
ok(
spanEl,
`<span> element should be in animated-property-name of ${property}`
);
is(spanEl.textContent, property, `textContent should be ${property}`);
info(`Checking compositor sign for ${property}`);
if (isOnCompositor) {
ok(
animatedPropertyNameEl.classList.contains("compositor"),
"animatedPropertyNameEl should has .compositor class"
);
isnot(
getComputedStyle(spanEl, "::before").width,
"auto",
"width of ::before pseud should not be auto"
);
} else {
ok(
!animatedPropertyNameEl.classList.contains("compositor"),
"animatedPropertyNameEl should not have .compositor class"
);
is(
getComputedStyle(spanEl, "::before").width,
"auto",
"width of ::before pseud should be auto"
);
}
info(`Checking warning for ${property}`);
if (isWarning) {
ok(
animatedPropertyNameEl.classList.contains("warning"),
"animatedPropertyNameEl should has .warning class"
);
is(
getComputedStyle(spanEl).textDecorationStyle,
"dotted",
"text-decoration-style of spanEl should be 'dotted'"
);
is(
getComputedStyle(spanEl).textDecorationLine,
"underline",
"text-decoration-line of spanEl should be 'underline'"
);
} else {
ok(
!animatedPropertyNameEl.classList.contains("warning"),
"animatedPropertyNameEl should not have .warning class"
);
is(
getComputedStyle(spanEl).textDecorationStyle,
"solid",
"text-decoration-style of spanEl should be 'solid'"
);
is(
getComputedStyle(spanEl).textDecorationLine,
"none",
"text-decoration-line of spanEl should be 'none'"
);
}
}
});
|