summaryrefslogtreecommitdiffstats
path: root/services/automation
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
commit086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch)
treea4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /services/automation
parentAdding debian version 124.0.1-1. (diff)
downloadfirefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz
firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'services/automation')
-rw-r--r--services/automation/ServicesAutomation.sys.mjs6
1 files changed, 3 insertions, 3 deletions
diff --git a/services/automation/ServicesAutomation.sys.mjs b/services/automation/ServicesAutomation.sys.mjs
index 24316d8827..fd5a58cba9 100644
--- a/services/automation/ServicesAutomation.sys.mjs
+++ b/services/automation/ServicesAutomation.sys.mjs
@@ -139,11 +139,11 @@ export var Authentication = {
let mainWindow = Services.wm.getMostRecentWindow("navigator:browser");
let newtab = mainWindow.gBrowser.addWebTab(uri);
let win = mainWindow.gBrowser.getBrowserForTab(newtab);
- win.addEventListener("load", function (e) {
+ win.addEventListener("load", function () {
LOG("load");
});
- win.addEventListener("loadstart", function (e) {
+ win.addEventListener("loadstart", function () {
LOG("loadstart");
});
@@ -299,7 +299,7 @@ export var Sync = {
await this.wipeLogs();
},
- observe(subject, topic, data) {
+ observe(subject, topic) {
LOG("Event received " + topic);
},