Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | * http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | "use strict"; |
michael@0 | 5 | |
michael@0 | 6 | const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; |
michael@0 | 7 | |
michael@0 | 8 | function whenBrowserLoaded(browser, callback) { |
michael@0 | 9 | browser.addEventListener("load", function onLoad(event) { |
michael@0 | 10 | if (event.target == browser.contentDocument) { |
michael@0 | 11 | browser.removeEventListener("load", onLoad, true); |
michael@0 | 12 | executeSoon(callback); |
michael@0 | 13 | } |
michael@0 | 14 | }, true); |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | function waitForOnBeforeUnloadDialog(browser, callback) { |
michael@0 | 18 | browser.addEventListener("DOMWillOpenModalDialog", function onModalDialog() { |
michael@0 | 19 | browser.removeEventListener("DOMWillOpenModalDialog", onModalDialog, true); |
michael@0 | 20 | |
michael@0 | 21 | executeSoon(() => { |
michael@0 | 22 | let stack = browser.parentNode; |
michael@0 | 23 | let dialogs = stack.getElementsByTagNameNS(XUL_NS, "tabmodalprompt"); |
michael@0 | 24 | let {button0, button1} = dialogs[0].ui; |
michael@0 | 25 | callback(button0, button1); |
michael@0 | 26 | }); |
michael@0 | 27 | }, true); |
michael@0 | 28 | } |