diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /services/automation/ServicesAutomation.sys.mjs | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'services/automation/ServicesAutomation.sys.mjs')
-rw-r--r-- | services/automation/ServicesAutomation.sys.mjs | 6 |
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); }, |