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
|
add_task(async function testArgumentInRequestStorageAccessUnderSite() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.storage_access.enabled", true],
["dom.storage_access.forward_declared.enabled", true],
[
"network.cookie.cookieBehavior",
BEHAVIOR_REJECT_TRACKER_AND_PARTITION_FOREIGN,
],
["dom.storage_access.auto_grants", false],
["dom.storage_access.max_concurrent_auto_grants", 1],
],
});
let tab = await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: TEST_4TH_PARTY_PAGE,
});
let browser = tab.linkedBrowser;
await SpecialPowers.spawn(browser, [], async _ => {
SpecialPowers.wrap(content.document).notifyUserGestureActivation();
var p = content.document.requestStorageAccessUnderSite("blob://test");
try {
await p;
ok(false, "Blob URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.requestStorageAccessUnderSite("about:config");
try {
await p;
ok(false, "about URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.requestStorageAccessUnderSite("qwertyuiop");
try {
await p;
ok(false, "Non URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.requestStorageAccessUnderSite("");
try {
await p;
ok(false, "Nullstring must be rejected.");
} catch {
ok(true, "Must reject.");
}
});
await BrowserTestUtils.removeTab(tab);
});
add_task(async function testArgumentInCompleteStorageAccessRequest() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.storage_access.enabled", true],
["dom.storage_access.forward_declared.enabled", true],
["network.cookie.cookieBehavior", BEHAVIOR_ACCEPT],
["dom.storage_access.auto_grants", false],
["dom.storage_access.max_concurrent_auto_grants", 1],
],
});
let tab = await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: TEST_TOP_PAGE,
});
let browser = tab.linkedBrowser;
await SpecialPowers.spawn(browser, [], async _ => {
SpecialPowers.wrap(content.document).notifyUserGestureActivation();
var p =
content.document.completeStorageAccessRequestFromSite("blob://test");
try {
await p;
ok(false, "Blob URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.completeStorageAccessRequestFromSite("about:config");
try {
await p;
ok(false, "about URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.completeStorageAccessRequestFromSite("qwertyuiop");
try {
await p;
ok(false, "Non URLs must be rejected.");
} catch {
ok(true, "Must reject.");
}
p = content.document.completeStorageAccessRequestFromSite("");
try {
await p;
ok(false, "Nullstring must be rejected.");
} catch {
ok(true, "Must reject.");
}
});
await BrowserTestUtils.removeTab(tab);
});
add_task(async () => {
Services.perms.removeAll();
await new Promise(resolve => {
Services.clearData.deleteData(Ci.nsIClearDataService.CLEAR_ALL, value =>
resolve()
);
});
});
|