From 007be1f1c3466acdb3fc6f571e68fe25bcff3c60 Mon Sep 17 00:00:00 2001 From: girst Date: Thu, 16 Jul 2020 16:53:01 +0200 Subject: [PATCH] Update contentAreaClick() for Firefox 80 keeping old value around to stay backwards-compatible. upstream change: https://hg.mozilla.org/mozilla-central/diff/48564fee92c70018cae91b914cb7529c86edecb7/browser/actors/ClickHandlerParent.jsm --- extension/lib/commands.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extension/lib/commands.coffee b/extension/lib/commands.coffee index aa87a21..83ef538 100644 --- a/extension/lib/commands.coffee +++ b/extension/lib/commands.coffee @@ -551,7 +551,8 @@ helper_follow_clickable = (options, args) -> originStoragePrincipal: json.originStoragePrincipal, triggeringPrincipal: json.triggeringPrincipal, csp: if json.csp then E10SUtils.deserializeCSP(json.csp) else null, - frameOuterWindowID: json.frameOuterWindowID, + frameOuterWindowID: json.frameOuterWindowID, # <=fx79 + frameID: data.frameID, # >=fx80 allowInheritPrincipal: true, } if json.originAttributes.userContextId -- 2.39.3