blob: ea8ef5798422f86cf80fea2449c30fb317208824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async () => {
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");
}
});
});
|