Bug 1700051: part 46) Const-qualify `mozInlineSpellStatus::mAnchorRange`. r=smaug
[gecko.git] / netwerk / test / browser / browser_fetch_lnk.js
blobcbfc6a4c4b4f05400de962543f0548877662407b
1 /* Any copyright is dedicated to the Public Domain.
2    http://creativecommons.org/publicdomain/zero/1.0/ */
4 "use strict";
6 add_task(async () => {
7   await SpecialPowers.pushPrefEnv({
8     set: [["privacy.file_unique_origin", false]],
9   });
11   const FILE_PAGE = Services.io.newFileURI(
12     new FileUtils.File(getTestFilePath("dummy.html"))
13   ).spec;
14   await BrowserTestUtils.withNewTab(FILE_PAGE, async browser => {
15     try {
16       await SpecialPowers.spawn(browser, [], () =>
17         content.fetch("./file_lnk.lnk")
18       );
19       ok(
20         false,
21         "Loading lnk must fail if it links to a file from other directory"
22       );
23     } catch (err) {
24       is(err.constructor.name, "TypeError", "Should fail on Windows");
25     }
26   });
27 });