Cancel redirects for the same requestIds and urls if originating from the same tabId

Fixes #940
This commit is contained in:
stoically
2018-02-12 23:12:32 +01:00
parent 601056406a
commit dab3005c6f
6 changed files with 201 additions and 24 deletions
+2 -2
View File
@@ -91,11 +91,11 @@ global.buildPopupDom = async (options = {}) => {
global.afterEach(() => {
if (global.background) {
global.background.dom.window.close();
delete global.background.dom;
delete global.background;
}
if (global.popup) {
global.popup.dom.window.close();
delete global.popup.dom;
delete global.popup;
}
});