diff options
Diffstat (limited to 'remote/cdp/domains/content')
-rw-r--r-- | remote/cdp/domains/content/Runtime.sys.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/cdp/domains/content/Runtime.sys.mjs b/remote/cdp/domains/content/Runtime.sys.mjs index 35e0f16710..44c36914d4 100644 --- a/remote/cdp/domains/content/Runtime.sys.mjs +++ b/remote/cdp/domains/content/Runtime.sys.mjs @@ -613,7 +613,7 @@ export class Runtime extends ContentProcessDomain { * @param {nsIConsoleMessage} subject * Console message. */ - observe(subject, topic, data) { + observe(subject) { if (subject instanceof Ci.nsIScriptError && subject.hasException) { let entry = fromScriptError(subject); this._emitExceptionThrown(entry); |