1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
This commit is contained in:
gorhill 2015-07-07 12:11:11 -04:00
parent 6214591fb8
commit a9089b3120

View File

@ -163,7 +163,11 @@ const contentObserver = {
context.opener !== context &&
this.ignoredPopups.has(context) === false
) {
openerURL = context.opener.location.href;
// https://github.com/gorhill/uBlock/issues/452
// Use location of top window, not that of a frame, as this
// would cause tab id lookup (necessary for popup blocking) to
// always fail.
openerURL = context.opener.top && context.opener.top.location.href;
}
} else if ( type === this.SUB_FRAME ) {
context = context.contentWindow;