From 6571a0700f3ab8d9c6fcbf48bc27ee737292b114 Mon Sep 17 00:00:00 2001 From: Deathamns Date: Fri, 2 Jan 2015 20:24:33 +0100 Subject: [PATCH] Firefox: workaround for the e10s crash --- platform/firefox/frameModule.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js index ea6845c..2b1a912 100644 --- a/platform/firefox/frameModule.js +++ b/platform/firefox/frameModule.js @@ -147,9 +147,9 @@ const contentObserver = { // The context for the popups is an iframe element here, // so check context.top instead - if ( context.top && context.location ) { - getMessageManager(context).sendSyncMessage(this.messageName, { + // https://bugzil.la/1092216 + getMessageManager(context).sendRpcMessage(this.messageName, { opener: opener || null, url: location.spec, type: type,