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-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 ) {