1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00
This commit is contained in:
gorhill 2015-02-15 08:12:56 -05:00
parent a6dfe3f416
commit 0f629c9df8

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