mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
this fixes #795
This commit is contained in:
parent
5ab41b67a9
commit
551308455c
1 changed files with 3 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue