mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
89 lines
2.4 KiB
HTML
89 lines
2.4 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for content script private browsing ID</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
|
|
<script type="text/javascript" src="head.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
add_task(function* test_contentscript_incognito() {
|
|
let extension = ExtensionTestUtils.loadExtension({
|
|
manifest: {
|
|
content_scripts: [
|
|
{
|
|
"matches": ["http://mochi.test/*/file_sample.html"],
|
|
"js": ["content_script.js"],
|
|
},
|
|
],
|
|
},
|
|
|
|
background() {
|
|
let windowId;
|
|
|
|
browser.test.onMessage.addListener(([msg, url]) => {
|
|
if (msg === "open-window") {
|
|
browser.windows.create({url, incognito: true}).then(window => {
|
|
windowId = window.id;
|
|
});
|
|
} else if (msg === "close-window") {
|
|
browser.windows.remove(windowId).then(() => {
|
|
browser.test.sendMessage("done");
|
|
});
|
|
}
|
|
});
|
|
},
|
|
|
|
files: {
|
|
"content_script.js": async () => {
|
|
const COOKIE = "foo=florgheralzps";
|
|
document.cookie = COOKIE;
|
|
|
|
let url = new URL("return_headers.sjs", location.href);
|
|
|
|
let responses = [
|
|
new Promise(resolve => {
|
|
let xhr = new XMLHttpRequest();
|
|
xhr.open("GET", url);
|
|
xhr.onload = () => resolve(JSON.parse(xhr.responseText));
|
|
xhr.send();
|
|
}),
|
|
|
|
fetch(url, {credentials: "include"}).then(body => body.json()),
|
|
];
|
|
|
|
try {
|
|
for (let response of await Promise.all(responses)) {
|
|
browser.test.assertEq(COOKIE, response.cookie, "Got expected cookie header");
|
|
}
|
|
browser.test.notifyPass("cookies");
|
|
} catch (e) {
|
|
browser.test.fail(`Error: ${e}`);
|
|
browser.test.notifyFail("cookies");
|
|
}
|
|
},
|
|
},
|
|
});
|
|
|
|
yield extension.startup();
|
|
|
|
extension.sendMessage(["open-window", SimpleTest.getTestFileURL("file_sample.html")]);
|
|
|
|
yield extension.awaitFinish("cookies");
|
|
|
|
extension.sendMessage(["close-window"]);
|
|
yield extension.awaitMessage("done");
|
|
|
|
yield extension.unload();
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|