summaryrefslogtreecommitdiffstats
path: root/dom/base/test/chrome/file_bug549682.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/chrome/file_bug549682.xhtml')
-rw-r--r--dom/base/test/chrome/file_bug549682.xhtml10
1 files changed, 5 insertions, 5 deletions
diff --git a/dom/base/test/chrome/file_bug549682.xhtml b/dom/base/test/chrome/file_bug549682.xhtml
index 8ae05d38d8..0bb3080507 100644
--- a/dom/base/test/chrome/file_bug549682.xhtml
+++ b/dom/base/test/chrome/file_bug549682.xhtml
@@ -28,11 +28,11 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=549682
}
var asyncPPML = false;
- function ppmASL(m) {
+ function ppmASL() {
asyncPPML = true;
}
var syncPPML = false;
- function ppmSL(m) {
+ function ppmSL() {
syncPPML = true;
}
ppm.addMessageListener("processmessageAsync", ppmASL);
@@ -42,7 +42,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=549682
cpm.sendSyncMessage("processmessageSync", "");
var asyncCPML = false;
- function cpmASL(m) {
+ function cpmASL() {
asyncCPML = true;
}
cpm.addMessageListener("childprocessmessage", cpmASL);
@@ -93,7 +93,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=549682
var weakListener = {
QueryInterface: ChromeUtils.generateQI(["nsISupportsWeakReference"]),
- receiveMessage(msg) {
+ receiveMessage() {
if (weakMessageReceived) {
ok(false, 'Weak listener fired twice.');
return;
@@ -109,7 +109,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=549682
var weakListener2 = {
QueryInterface: ChromeUtils.generateQI(["nsISupportsWeakReference"]),
- receiveMessage(msg) {
+ receiveMessage() {
ok(false, 'Should not have received a message.');
}
};