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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for SpecialPowers.loadChromeScript</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();
var script = SpecialPowers.loadChromeScript(function loadChromeScriptTest() {
/* eslint-env mozilla/chrome-script */
// Copied from SpecialPowersLoadChromeScript.js
// Just receive 'foo' message and forward it back
// as 'bar' message
addMessageListener("foo", function (message) {
sendAsyncMessage("bar", message);
});
addMessageListener("valid-assert", function (message) {
assert.ok(true, "valid assertion");
assert.equal(1, 1, "another valid assertion");
sendAsyncMessage("valid-assert-done");
});
addMessageListener("sync-message", () => {
return "Received a synchronous message.";
});
});
var MESSAGE = { bar: true };
script.addMessageListener("bar", function (message) {
is(JSON.stringify(message), JSON.stringify(MESSAGE),
"received back message from the chrome script");
checkAssert();
});
function checkAssert() {
script.sendAsyncMessage("valid-assert");
script.addMessageListener("valid-assert-done", endOfTest);
}
async function endOfTest() {
is(await script.sendQuery("sync-message"), "Received a synchronous message.",
"Check sync return value");
script.destroy();
SimpleTest.finish();
}
script.sendAsyncMessage("foo", MESSAGE);
</script>
</pre>
</body>
</html>
|