blob: e4b6cf4eb2ff5903cb6a425f0f4d57c2812fa36d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test `Response` constructor in a WebExtension</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
<script>
add_task(async function testResponseConstructor() {
/* eslint-env webextensions */
function contentScript() {
new Response();
browser.test.notifyPass("done");
}
const extension = ExtensionTestUtils.loadExtension({
manifest: {
content_scripts: [
{
matches: ["<all_urls>"],
js: ["content_script.js"],
},
],
},
files: {
"content_script.js": contentScript,
},
});
await extension.startup();
const win = window.open("https://example.com");
await extension.awaitFinish("done");
win.close();
await extension.unload();
});
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
</body>
</html>
|