summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html')
-rw-r--r--testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html b/testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html
new file mode 100644
index 000000000..da29eadb8
--- /dev/null
+++ b/testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>Test for SpecialPowers.loadChromeScript</title>
+ <script type="text/javascript" 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() {
+ // 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);
+}
+
+function endOfTest() {
+ script.destroy();
+ SimpleTest.finish();
+}
+
+script.sendAsyncMessage("foo", MESSAGE);
+
+/*
+ * [0][0] is because we're using one real message listener in SpecialPowersObserverAPI.js
+ * and dispatching that to multiple _chromeScriptListeners. The outer array comes
+ * from the message manager since there can be multiple real listeners. The inner
+ * array is for the return values of _chromeScriptListeners.
+ */
+is(script.sendSyncMessage("sync-message")[0][0], "Received a synchronous message.",
+ "Check sync return value");
+
+</script>
+</pre>
+</body>
+</html>