From 5f3b5365d1b668ce7c1b300ef1e03454dafddd92 Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 27 Jan 2016 11:03:30 -0500 Subject: [PATCH] #1305: forgot to add link to issue in code --- platform/firefox/frameModule.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js index ddaae97bd..24bc3a6c3 100644 --- a/platform/firefox/frameModule.js +++ b/platform/firefox/frameModule.js @@ -168,10 +168,11 @@ var contentObserver = { // Use location of top window, not that of a frame, as this // would cause tab id lookup (necessary for popup blocking) to // always fail. - // Opener could be a dead object, using it would cause a throw. - // Repro case: - // - Open http://delishows.to/show/chicago-med/season/1/episode/6 - // - Click anywhere in the background + // https://github.com/gorhill/uBlock/issues/1305 + // Opener could be a dead object, using it would cause a throw. + // Repro case: + // - Open http://delishows.to/show/chicago-med/season/1/episode/6 + // - Click anywhere in the background let openerURL = null; try { let opener = openeeContext.opener.top || openeeContext.opener;