fune/docshell/test/browser/browser_dataURI_unique_opaque_origin.js
Marco Bonardo 70fdad6676 Bug 1852963 - Rename BrowserTestUtils.loadURIString() to .startLoadingURIString(). r=dao
This should make a bit clearer that it is only starting the load, not waiting
for its completion.

Differential Revision: https://phabricator.services.mozilla.com/D188213
2023-09-15 09:16:34 +00:00

30 lines
994 B
JavaScript

add_task(async function test_dataURI_unique_opaque_origin() {
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
let tab = BrowserTestUtils.addTab(gBrowser, "http://example.com");
let browser = tab.linkedBrowser;
await BrowserTestUtils.browserLoaded(browser);
let pagePrincipal = browser.contentPrincipal;
info("pagePrincial " + pagePrincipal.origin);
BrowserTestUtils.startLoadingURIString(browser, "data:text/html,hi");
await BrowserTestUtils.browserLoaded(browser);
await SpecialPowers.spawn(
browser,
[{ principal: pagePrincipal }],
async function (args) {
info("data URI principal: " + content.document.nodePrincipal.origin);
Assert.ok(
content.document.nodePrincipal.isNullPrincipal,
"data: URI should have NullPrincipal."
);
Assert.ok(
!content.document.nodePrincipal.equals(args.principal),
"data: URI should have unique opaque origin."
);
}
);
gBrowser.removeTab(tab);
});