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
|
"use strict";
const DEFAULT_THEME_BG_COLOR = "rgb(255, 255, 255)";
const DEFAULT_THEME_TEXT_COLOR = "rgb(0, 0, 0)";
add_task(async function test_deprecated_LWT_properties_ignored() {
// This test uses deprecated theme properties, so warnings are expected.
ExtensionTestUtils.failOnSchemaWarnings(false);
let extension = ExtensionTestUtils.loadExtension({
manifest: {
theme: {
images: {
headerURL: "image1.png",
},
colors: {
accentcolor: ACCENT_COLOR,
textcolor: TEXT_COLOR,
},
},
},
files: {
"image1.png": BACKGROUND,
},
});
await extension.startup();
let docEl = window.document.documentElement;
let style = window.getComputedStyle(docEl);
Assert.ok(docEl.hasAttribute("lwtheme"), "LWT attribute should be set");
Assert.ok(
!docEl.hasAttribute("lwtheme-image"),
"LWT image attribute should not be set on deprecated headerURL alias"
);
Assert.equal(
docEl.getAttribute("lwthemetextcolor"),
"dark",
"LWT text color attribute should not be set on deprecated textcolor alias"
);
Assert.equal(
style.backgroundColor,
DEFAULT_THEME_BG_COLOR,
"Expected default theme background color"
);
Assert.equal(
style.color,
DEFAULT_THEME_TEXT_COLOR,
"Expected default theme text color"
);
await extension.unload();
Assert.ok(!docEl.hasAttribute("lwtheme"), "LWT attribute should not be set");
});
|