blob: cbfc6a4c4b4f05400de962543f0548877662407b (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async () => {
await SpecialPowers.pushPrefEnv({
set: [["privacy.file_unique_origin", false]],
});
const FILE_PAGE = Services.io.newFileURI(
new FileUtils.File(getTestFilePath("dummy.html"))
).spec;
await BrowserTestUtils.withNewTab(FILE_PAGE, async browser => {
try {
await SpecialPowers.spawn(browser, [], () =>
content.fetch("./file_lnk.lnk")
);
ok(
false,
"Loading lnk must fail if it links to a file from other directory"
);
} catch (err) {
is(err.constructor.name, "TypeError", "Should fail on Windows");
}
});
});
|