summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/browser/browser_ext_themes_multiple_backgrounds.js
blob: 58088ce6a0ec1918d34237fe4ebff86647e21587 (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
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
"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("lwtheme-brighttext"),
    "true",
    "LWT text color attribute should be set"
  );

  let toolboxCS = window.getComputedStyle(toolbox);
  let toolboxBgImage = toolboxCS.backgroundImage.split(",")[0].trim();
  if (backgroundColorSetOnRoot()) {
    let rootCS = window.getComputedStyle(docEl);
    let rootBgImage = rootCS.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(toolboxBgImage).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."
    );
  } else {
    Assert.equal(
      toolboxCS.backgroundImage,
      [1, 2, 2, 2]
        .map(num => toolboxBgImage.replace(/face[\d]*/, `face${num}`))
        .join(", "),
      "The backgroundImage should use face1.png once and face2.png three times."
    );
    Assert.equal(
      toolboxCS.backgroundPosition,
      "100% 0%, 0% 0%, 50% 0%, 100% 100%",
      "The backgroundPosition should use the three values provided, preceded by the default for theme_frame."
    );
    /**
     * We expect duplicate background-repeat values because we apply `no-repeat`
     * once for theme_frame, and again as the default value of
     * --lwt-background-tiling.
     */
    Assert.equal(
      toolboxCS.backgroundRepeat,
      "no-repeat, 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.
  if (backgroundColorSetOnRoot()) {
    let rootCS = window.getComputedStyle(docEl);
    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("lwtheme-brighttext"),
    "true",
    "LWT text color attribute should be set"
  );

  let toolboxCS = window.getComputedStyle(toolbox);
  if (backgroundColorSetOnRoot()) {
    let rootCS = window.getComputedStyle(docEl);
    let rootImage = rootCS.backgroundImage.split(",")[0].trim();
    Assert.ok(
      rootImage.includes("face0.png"),
      `The backgroundImage should use face.png. Actual value is: ${rootImage}`
    );
    Assert.equal(
      [1, 2, 3]
        .map(num => rootImage.replace(/face[\d]*/, `face${num}`))
        .join(", "),
      toolboxCS.backgroundImage,
      "The backgroundImage should use face.png three times."
    );
    Assert.equal(
      rootCS.backgroundPosition,
      "100% 0%, 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, repeat-x, repeat-y, 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."
    );
  } else {
    let toolboxImage = toolboxCS.backgroundImage.split(",")[0].trim();
    Assert.equal(
      [0, 1, 2, 3]
        .map(num => toolboxImage.replace(/face[\d]*/, `face${num}`))
        .join(", "),
      toolboxCS.backgroundImage,
      "The backgroundImage should use face.png four times."
    );
    /**
     * We expect duplicate background-position values because we apply `right top`
     * once for theme_frame, and again as the default value of
     * --lwt-background-alignment.
     */
    Assert.equal(
      toolboxCS.backgroundPosition,
      "100% 0%, 100% 0%",
      "The backgroundPosition should use the default value for navigator-toolbox."
    );
    Assert.equal(
      toolboxCS.backgroundRepeat,
      "no-repeat, repeat-x, repeat-y, repeat",
      "The backgroundRepeat should use the three values provided for --lwt-background-tiling, preceeded by the default for theme_frame."
    );
  }

  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("lwtheme-brighttext"),
    "true",
    "LWT text color attribute should be set"
  );

  let toolboxCS = window.getComputedStyle(toolbox);
  if (backgroundColorSetOnRoot()) {
    let rootCS = window.getComputedStyle(docEl);
    let bgImage = rootCS.backgroundImage.split(",")[0].trim();
    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%, 100% 0%",
      "The backgroundPosition should use the default value."
    );
    Assert.equal(
      rootCS.backgroundRepeat,
      "no-repeat, no-repeat",
      "The backgroundPosition should use only one (default) value for the header and the default additional images."
    );
  } else {
    let bgImage = toolboxCS.backgroundImage.split(",")[0].trim();
    Assert.ok(
      bgImage.includes("face.png"),
      `The backgroundImage should use face.png. Actual value is: ${bgImage}`
    );
    Assert.ok(
      bgImage.includes("face.png"),
      `The backgroundImage should use face.png. Actual value is: ${bgImage}`
    );
    Assert.equal(
      toolboxCS.backgroundPosition,
      "100% 0%, 100% 0%",
      "The backgroundPosition should use the default value."
    );
    Assert.equal(
      toolboxCS.backgroundRepeat,
      "no-repeat, no-repeat",
      "The backgroundRepeat should use the default value."
    );
  }

  await extension.unload();

  Assert.ok(!docEl.hasAttribute("lwtheme"), "LWT attribute should not be set");
});