1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

try as much as possible to bind root doc to tab (#1001)

This commit is contained in:
gorhill 2015-03-13 08:36:12 -04:00
parent 6dd4a244fc
commit 0f206fd602

View File

@ -201,11 +201,18 @@ var onHeadersReceived = function(details) {
return;
}
var requestURL = details.url;
// Lookup the page store associated with this tab id.
var µb = µBlock;
var pageStore = µb.pageStoreFromTabId(tabId);
if ( !pageStore ) {
return;
if ( details.type === 'main_frame' && details.parentFrameId === -1 ) {
pageStore = µb.bindTabToPageStats(tabId, requestURL, 'beforeRequest');
}
if ( !pageStore ) {
return;
}
}
// https://github.com/gorhill/uBlock/issues/384
@ -215,7 +222,6 @@ var onHeadersReceived = function(details) {
// pageStore.skipLocalMirroring = headerStartsWith(details.responseHeaders, 'content-security-policy') !== '';
//}
var requestURL = details.url;
var requestHostname = details.hostname;
// https://github.com/gorhill/uBlock/issues/525