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
|
"use strict";
const PAGE_WITHOUT_SCHEME = "://example.com";
add_task(async function () {
// Load a insecure page with HTTPS-Only and HTTPS-First disabled
await runTest({
loadScheme: "http",
expectScheme: "http",
});
// Load a secure page with HTTPS-Only and HTTPS-First disabled
await runTest({
loadScheme: "https",
expectScheme: "https",
});
// Load a exempted insecure page with HTTPS-Only and HTTPS-First disabled
await runTest({
exempt: true,
loadScheme: "http",
expectScheme: "http",
});
await SpecialPowers.pushPrefEnv({
set: [["dom.security.https_only_mode", true]],
});
// Load a insecure page with HTTPS-Only enabled
await runTest({
loadScheme: "http",
expectScheme: "https",
});
// Load a exempted insecure page with HTTPS-Only enabled
await runTest({
exempt: true,
loadScheme: "http",
expectScheme: "http",
});
await SpecialPowers.flushPrefEnv();
await SpecialPowers.pushPrefEnv({
set: [["dom.security.https_first", true]],
});
// Load a insecure page with HTTPS-First enabled
await runTest({
loadScheme: "http",
expectScheme: "https",
});
// Load a exempted insecure page with HTTPS-First enabled
await runTest({
exempt: true,
loadScheme: "http",
expectScheme: "http",
});
});
async function runTest(options) {
const { exempt = false, loadScheme, expectScheme } = options;
const page = loadScheme + PAGE_WITHOUT_SCHEME;
if (exempt) {
await SpecialPowers.pushPermissions([
{
type: "https-only-load-insecure",
allow: true,
context: page,
},
]);
}
await BrowserTestUtils.withNewTab(page, async function (browser) {
is(browser.currentURI.scheme, expectScheme, "Unexpected scheme");
await SpecialPowers.popPermissions();
await SpecialPowers.popPrefEnv();
});
}
|