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
|
"use strict";
// This test checks whether applied WebExtension themes are persisted and applied
// on newly opened windows.
add_task(async function test_multiple_windows() {
let extension = ExtensionTestUtils.loadExtension({
manifest: {
theme: {
images: {
theme_frame: "image1.png",
},
colors: {
frame: ACCENT_COLOR,
tab_background_text: TEXT_COLOR,
},
},
},
files: {
"image1.png": BACKGROUND,
},
});
await extension.startup();
let docEl = window.document.documentElement;
let toolbox = document.querySelector("#navigator-toolbox");
let computedStyle = window.getComputedStyle(
backgroundColorSetOnRoot() ? docEl : 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"
);
Assert.ok(
computedStyle.backgroundImage.includes("image1.png"),
"Expected background image"
);
// Now we'll open a new window to see if the theme is also applied there.
let window2 = await BrowserTestUtils.openNewBrowserWindow();
docEl = window2.document.documentElement;
toolbox = window2.document.querySelector("#navigator-toolbox");
computedStyle = window.getComputedStyle(
backgroundColorSetOnRoot() ? docEl : 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"
);
Assert.ok(
computedStyle.backgroundImage.includes("image1.png"),
"Expected background image"
);
await BrowserTestUtils.closeWindow(window2);
await extension.unload();
});
|