diff options
Diffstat (limited to 'platform/firefox/frameModule.js')
-rw-r--r-- | platform/firefox/frameModule.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js index 7a0d84d..b7c765d 100644 --- a/platform/firefox/frameModule.js +++ b/platform/firefox/frameModule.js @@ -226,7 +226,10 @@ const contentObserver = { win.document.title.slice(0, 100) ].join(' | '); + // https://github.com/gorhill/uMatrix/issues/325 + // "Pass sameZoneAs to sandbox constructor to make GCs cheaper" sandbox = Cu.Sandbox([win], { + sameZoneAs: win.top, sandboxName: sandboxId + '[' + sandboxName + ']', sandboxPrototype: win, wantComponents: false, |