1
0
Fork 0
firefox/extensions/permissions/test/browser_permmgr_viewsrc.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
856 B
JavaScript

add_task(async function () {
// Add a permission for example.com, start a new content process, and make
// sure that the permission has been sent down.
let principal =
Services.scriptSecurityManager.createContentPrincipalFromOrigin(
"https://example.com"
);
Services.perms.addFromPrincipal(
principal,
"viewsourceTestingPerm",
Services.perms.ALLOW_ACTION
);
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"view-source:https://example.com",
/* waitForLoad */ true,
/* waitForStateStop */ false,
/* forceNewProcess */ true
);
await SpecialPowers.spawn(tab.linkedBrowser, [principal], async function (p) {
is(
Services.perms.testPermissionFromPrincipal(p, "viewsourceTestingPerm"),
Services.perms.ALLOW_ACTION
);
});
BrowserTestUtils.removeTab(tab);
});