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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
"use strict";
add_task(async function test_support_backgrounds_position() {
let extension = ExtensionTestUtils.loadExtension({
manifest: {
theme: {
images: {
theme_frame: "face1.png",
additional_backgrounds: ["face2.png", "face2.png", "face2.png"],
},
colors: {
frame: `rgb(${FRAME_COLOR.join(",")})`,
tab_background_text: `rgb(${TAB_BACKGROUND_TEXT_COLOR.join(",")})`,
},
properties: {
additional_backgrounds_alignment: [
"left top",
"center top",
"right bottom",
],
},
},
},
files: {
"face1.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
"face2.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
},
});
await extension.startup();
let docEl = window.document.documentElement;
let toolbox = document.querySelector("#navigator-toolbox");
Assert.ok(docEl.hasAttribute("lwtheme"), "LWT attribute should be set");
Assert.equal(
docEl.getAttribute("lwthemetextcolor"),
"bright",
"LWT text color attribute should be set"
);
let toolboxCS = window.getComputedStyle(toolbox);
let rootCS = window.getComputedStyle(docEl);
let rootBgImage = rootCS.backgroundImage.split(",")[0].trim();
let bgImage = toolboxCS.backgroundImage.split(",")[0].trim();
Assert.ok(
rootBgImage.includes("face1.png"),
`The backgroundImage should use face1.png. Actual value is: ${rootBgImage}`
);
Assert.equal(
toolboxCS.backgroundImage,
Array(3)
.fill(bgImage)
.join(", "),
"The backgroundImage should use face2.png three times."
);
Assert.equal(
toolboxCS.backgroundPosition,
"0% 0%, 50% 0%, 100% 100%",
"The backgroundPosition should use the three values provided."
);
Assert.equal(
toolboxCS.backgroundRepeat,
"no-repeat",
"The backgroundPosition should use the default value."
);
await extension.unload();
Assert.ok(!docEl.hasAttribute("lwtheme"), "LWT attribute should not be set");
toolboxCS = window.getComputedStyle(toolbox);
// Styles should've reverted to their initial values.
Assert.equal(rootCS.backgroundImage, "none");
Assert.equal(rootCS.backgroundPosition, "0% 0%");
Assert.equal(rootCS.backgroundRepeat, "repeat");
Assert.equal(toolboxCS.backgroundImage, "none");
Assert.equal(toolboxCS.backgroundPosition, "0% 0%");
Assert.equal(toolboxCS.backgroundRepeat, "repeat");
});
add_task(async function test_support_backgrounds_repeat() {
let extension = ExtensionTestUtils.loadExtension({
manifest: {
theme: {
images: {
theme_frame: "face0.png",
additional_backgrounds: ["face1.png", "face2.png", "face3.png"],
},
colors: {
frame: FRAME_COLOR,
tab_background_text: TAB_BACKGROUND_TEXT_COLOR,
},
properties: {
additional_backgrounds_tiling: ["repeat-x", "repeat-y", "repeat"],
},
},
},
files: {
"face0.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
"face1.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
"face2.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
"face3.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
},
});
await extension.startup();
let docEl = window.document.documentElement;
let toolbox = document.querySelector("#navigator-toolbox");
Assert.ok(docEl.hasAttribute("lwtheme"), "LWT attribute should be set");
Assert.equal(
docEl.getAttribute("lwthemetextcolor"),
"bright",
"LWT text color attribute should be set"
);
let rootCS = window.getComputedStyle(docEl);
let toolboxCS = window.getComputedStyle(toolbox);
let bgImage = rootCS.backgroundImage.split(",")[0].trim();
Assert.ok(
bgImage.includes("face0.png"),
`The backgroundImage should use face.png. Actual value is: ${bgImage}`
);
Assert.equal(
[1, 2, 3].map(num => bgImage.replace(/face[\d]*/, `face${num}`)).join(", "),
toolboxCS.backgroundImage,
"The backgroundImage should use face.png three times."
);
Assert.equal(
rootCS.backgroundPosition,
"100% 0%",
"The backgroundPosition should use the default value for root."
);
Assert.equal(
toolboxCS.backgroundPosition,
"100% 0%",
"The backgroundPosition should use the default value for navigator-toolbox."
);
Assert.equal(
rootCS.backgroundRepeat,
"no-repeat",
"The backgroundRepeat should use the default values for root."
);
Assert.equal(
toolboxCS.backgroundRepeat,
"repeat-x, repeat-y, repeat",
"The backgroundRepeat should use the three values provided for navigator-toolbox."
);
await extension.unload();
Assert.ok(!docEl.hasAttribute("lwtheme"), "LWT attribute should not be set");
});
add_task(async function test_additional_images_check() {
let extension = ExtensionTestUtils.loadExtension({
manifest: {
theme: {
images: {
theme_frame: "face.png",
},
colors: {
frame: FRAME_COLOR,
tab_background_text: TAB_BACKGROUND_TEXT_COLOR,
},
properties: {
additional_backgrounds_tiling: ["repeat-x", "repeat-y", "repeat"],
},
},
},
files: {
"face.png": imageBufferFromDataURI(ENCODED_IMAGE_DATA),
},
});
await extension.startup();
let docEl = window.document.documentElement;
let toolbox = document.querySelector("#navigator-toolbox");
Assert.ok(docEl.hasAttribute("lwtheme"), "LWT attribute should be set");
Assert.equal(
docEl.getAttribute("lwthemetextcolor"),
"bright",
"LWT text color attribute should be set"
);
let rootCS = window.getComputedStyle(docEl);
let toolboxCS = window.getComputedStyle(toolbox);
let bgImage = rootCS.backgroundImage.split(",")[0];
Assert.ok(
bgImage.includes("face.png"),
`The backgroundImage should use face.png. Actual value is: ${bgImage}`
);
Assert.equal(
"none",
toolboxCS.backgroundImage,
"The backgroundImage should not use face.png."
);
Assert.equal(
rootCS.backgroundPosition,
"100% 0%",
"The backgroundPosition should use the default value."
);
Assert.equal(
rootCS.backgroundRepeat,
"no-repeat",
"The backgroundPosition should use only one (default) value."
);
await extension.unload();
Assert.ok(!docEl.hasAttribute("lwtheme"), "LWT attribute should not be set");
});
|