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/. */
|
|
|
|
|
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 10:39:12 +03:00
|
|
|
var retval = docShell.QueryInterface(Ci.nsIInterfaceRequestor).
|
|
|
|
getInterface(Ci.nsIContentFrameMessageManager).
|
|
|
|
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);
|
|
|
|
|
|
|
|
addMessageListener("chrome-message",
|
|
|
|
function(m) {
|
|
|
|
dump(uneval(m.json) + "\n");
|
|
|
|
sendAsyncMessage("chrome-message-reply", m.json);
|
|
|
|
});
|
|
|
|
|
|
|
|
addMessageListener("speed-test-start",
|
|
|
|
function(m) {
|
|
|
|
while (sendSyncMessage("speed-test")[0].message != "done");
|
|
|
|
});
|
|
|
|
|
|
|
|
addMessageListener("async-echo", function(m) {
|
|
|
|
sendAsyncMessage(m.name);
|
|
|
|
});
|