This commit is contained in:
gorhill 2015-02-15 08:12:56 -05:00
parent 5ab41b67a9
commit 551308455c

View file

@ -149,7 +149,9 @@ const contentObserver = {
return this.ACCEPT;
}
let isTopLevel = context === context.top;
// https://github.com/gorhill/uBlock/issues/795
// Only the top main frame can be an orphan
let isTopLevel = context === context.top && type === this.MAIN_FRAME;
let parentFrameId;
if ( isTopLevel ) {