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
|
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
function confirmDefaults() {
if (gURLBar.searchButton) {
is(
getComputedStyle(document.getElementById("identity-box")).display,
"none",
"Identity box should be hidden"
);
} else {
is(
getComputedStyle(document.getElementById("identity-icon")).listStyleImage,
'url("chrome://global/skin/icons/search-glass.svg")',
"Identity icon should be the search icon"
);
}
let label = document.getElementById("identity-icon-label");
ok(
BrowserTestUtils.is_hidden(label),
"No label should be used before the extension is started"
);
}
function confirmExtensionPage() {
let identityIconEl = document.getElementById("identity-icon");
is(
getComputedStyle(identityIconEl).listStyleImage,
'url("chrome://mozapps/skin/extensions/extension.svg")',
"Identity icon should be the default extension icon"
);
is(
identityIconEl.tooltipText,
"Loaded by extension: Test Extension",
"The correct tooltip should be used"
);
let label = document.getElementById("identity-icon-label");
is(
label.value,
"Extension (Test Extension)",
"The correct label should be used"
);
ok(BrowserTestUtils.is_visible(label), "No label should be visible");
}
add_task(async function testIdentityIndication() {
let extension = ExtensionTestUtils.loadExtension({
background() {
browser.test.sendMessage("url", browser.runtime.getURL("icon.png"));
},
manifest: {
name: "Test Extension",
},
files: {
"icon.png": "",
},
});
await extension.startup();
confirmDefaults();
let url = await extension.awaitMessage("url");
await BrowserTestUtils.withNewTab({ gBrowser, url }, async function() {
confirmExtensionPage();
});
await extension.unload();
confirmDefaults();
});
add_task(async function testIdentityIndicationNewTab() {
let extension = ExtensionTestUtils.loadExtension({
background() {
browser.test.sendMessage("url", browser.runtime.getURL("newtab.html"));
},
manifest: {
name: "Test Extension",
browser_specific_settings: {
gecko: {
id: "@newtab",
},
},
chrome_url_overrides: {
newtab: "newtab.html",
},
},
files: {
"newtab.html": "<h1>New tab!</h1>",
},
useAddonManager: "temporary",
});
await extension.startup();
confirmDefaults();
let url = await extension.awaitMessage("url");
await BrowserTestUtils.withNewTab({ gBrowser, url }, async function() {
confirmExtensionPage();
is(gURLBar.value, "", "The URL bar is blank");
});
await extension.unload();
confirmDefaults();
});
|