mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Rename Toolkit's webextensions component directory to better reflect what it is.
This commit is contained in:
parent
6955450f7a
commit
d7d16e7fbb
242 changed files with 4 additions and 2 deletions
|
|
@ -1,89 +0,0 @@
|
|||
<!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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue