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 | <?xml version="1.0"?> |
michael@0 | 2 | |
michael@0 | 3 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 6 | |
michael@0 | 7 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 8 | <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> |
michael@0 | 9 | |
michael@0 | 10 | <!DOCTYPE window SYSTEM "chrome://global/locale/printPreviewProgress.dtd"> |
michael@0 | 11 | |
michael@0 | 12 | <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 13 | class="dialog" |
michael@0 | 14 | title="&printWindow.title;" |
michael@0 | 15 | style="width: 36em;" |
michael@0 | 16 | onload="onLoad()" |
michael@0 | 17 | onunload="onUnload()"> |
michael@0 | 18 | |
michael@0 | 19 | <script type="application/javascript" src="chrome://global/content/printPreviewProgress.js"/> |
michael@0 | 20 | |
michael@0 | 21 | <grid flex="1"> |
michael@0 | 22 | <columns> |
michael@0 | 23 | <column/> |
michael@0 | 24 | <column/> |
michael@0 | 25 | </columns> |
michael@0 | 26 | |
michael@0 | 27 | <rows> |
michael@0 | 28 | <row> |
michael@0 | 29 | <hbox pack="end"> |
michael@0 | 30 | <label id="dialog.titleLabel" value="&title;"/> |
michael@0 | 31 | </hbox> |
michael@0 | 32 | <label id="dialog.title"/> |
michael@0 | 33 | </row> |
michael@0 | 34 | <row class="thin-separator"> |
michael@0 | 35 | <hbox pack="end"> |
michael@0 | 36 | <label id="dialog.progressSpaces" value="&progress;"/> |
michael@0 | 37 | </hbox> |
michael@0 | 38 | <label id="dialog.progressLabel" value="&preparing;"/> |
michael@0 | 39 | </row> |
michael@0 | 40 | </rows> |
michael@0 | 41 | </grid> |
michael@0 | 42 | </window> |