2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2018-12-13 03:45:24 +03:00
|
|
|
/* eslint-env mozilla/frame-script */
|
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
dump("Loading remote script!\n");
|
|
|
|
dump(content + "\n");
|
|
|
|
|
2018-03-01 22:19:56 +03:00
|
|
|
var cpm = Cc["@mozilla.org/childprocessmessagemanager;1"].getService();
|
2010-08-31 22:58:35 +04:00
|
|
|
cpm.addMessageListener("cpm-async", function(m) {
|
|
|
|
cpm.sendSyncMessage("ppm-sync");
|
|
|
|
dump(content.document.documentElement);
|
|
|
|
cpm.sendAsyncMessage("ppm-async");
|
|
|
|
});
|
|
|
|
|
2018-08-01 20:07:11 +03:00
|
|
|
var dshell = content.docShell.rootTreeItem.QueryInterface(Ci.nsIDocShell);
|
2010-03-03 23:30:25 +03:00
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
addEventListener(
|
|
|
|
"click",
|
|
|
|
function(e) {
|
|
|
|
dump(e.target + "\n");
|
2017-09-22 22:55:58 +03:00
|
|
|
if (
|
|
|
|
ChromeUtils.getClassName(e.target) === "HTMLAnchorElement" &&
|
2010-03-03 23:30:25 +03:00
|
|
|
dshell == docShell
|
|
|
|
) {
|
2018-08-03 06:49:09 +03:00
|
|
|
var retval = docShell.messageManager.sendSyncMessage("linkclick", {
|
|
|
|
href: e.target.href,
|
|
|
|
});
|
2010-02-20 20:05:20 +03:00
|
|
|
dump(uneval(retval[0]) + "\n");
|
|
|
|
// Test here also that both retvals are the same
|
|
|
|
sendAsyncMessage(
|
|
|
|
"linkclick-reply-object",
|
|
|
|
uneval(retval[0]) == uneval(retval[1]) ? retval[0] : ""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true
|
|
|
|
);
|
2019-07-05 11:44:55 +03:00
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
addMessageListener("chrome-message", function(m) {
|
|
|
|
dump(uneval(m.json) + "\n");
|
|
|
|
sendAsyncMessage("chrome-message-reply", m.json);
|
|
|
|
});
|
2019-07-05 11:44:55 +03:00
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
addMessageListener("speed-test-start", function(m) {
|
2018-12-13 03:45:24 +03:00
|
|
|
// eslint-disable-next-line no-empty
|
2010-02-20 20:05:20 +03:00
|
|
|
while (sendSyncMessage("speed-test")[0].message != "done") {}
|
|
|
|
});
|
|
|
|
|
|
|
|
addMessageListener("async-echo", function(m) {
|
|
|
|
sendAsyncMessage(m.name);
|
|
|
|
});
|