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 | <?xml-stylesheet href="chrome://mozapps/skin/extensions/about.css" type="text/css"?> |
michael@0 | 9 | |
michael@0 | 10 | <!DOCTYPE dialog SYSTEM "chrome://mozapps/locale/extensions/about.dtd"> |
michael@0 | 11 | |
michael@0 | 12 | <dialog id="genericAbout" |
michael@0 | 13 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 14 | onload="init();" |
michael@0 | 15 | buttons="accept" |
michael@0 | 16 | buttoniconaccept="close" |
michael@0 | 17 | onaccept="close();"> |
michael@0 | 18 | |
michael@0 | 19 | <script type="application/javascript" src="chrome://mozapps/content/extensions/about.js"/> |
michael@0 | 20 | <script type="application/javascript" src="chrome://global/content/contentAreaUtils.js"/> |
michael@0 | 21 | |
michael@0 | 22 | <stringbundleset id="aboutSet"> |
michael@0 | 23 | <stringbundle id="extensionsStrings" src="chrome://mozapps/locale/extensions/extensions.properties"/> |
michael@0 | 24 | </stringbundleset> |
michael@0 | 25 | |
michael@0 | 26 | <vbox id="clientBox" flex="1"> |
michael@0 | 27 | <hbox class="basic-info"> |
michael@0 | 28 | <vbox pack="center"> |
michael@0 | 29 | <image id="extensionIcon"/> |
michael@0 | 30 | </vbox> |
michael@0 | 31 | <vbox flex="1"> |
michael@0 | 32 | <label id="extensionName"/> |
michael@0 | 33 | <label id="extensionVersion" crop="end"/> |
michael@0 | 34 | </vbox> |
michael@0 | 35 | </hbox> |
michael@0 | 36 | <description id="extensionDescription" class="boxIndent"/> |
michael@0 | 37 | |
michael@0 | 38 | <separator id="groove" class="groove"/> |
michael@0 | 39 | |
michael@0 | 40 | <vbox id="extensionDetailsBox" flex="1"> |
michael@0 | 41 | <label id="extensionCreatorLabel" class="sectionTitle">&creator.label;</label> |
michael@0 | 42 | <hbox id="creatorBox" class="boxIndent"> |
michael@0 | 43 | <label id="extensionCreator" flex="1" crop="end"/> |
michael@0 | 44 | <label id="extensionHomepage" onclick="if (event.button == 0) { loadHomepage(event); }" |
michael@0 | 45 | class="text-link" value="&homepage.label;"/> |
michael@0 | 46 | </hbox> |
michael@0 | 47 | |
michael@0 | 48 | <label id="extensionDevelopers" class="sectionTitle">&developers.label;</label> |
michael@0 | 49 | <vbox flex="1" id="developersBox" class="boxIndent"/> |
michael@0 | 50 | <label id="extensionTranslators" class="sectionTitle">&translators.label;</label> |
michael@0 | 51 | <vbox flex="1" id="translatorsBox" class="boxIndent"/> |
michael@0 | 52 | <label id="extensionContributors" class="sectionTitle">&contributors.label;</label> |
michael@0 | 53 | <vbox flex="1" id="contributorsBox" class="boxIndent"/> |
michael@0 | 54 | </vbox> |
michael@0 | 55 | </vbox> |
michael@0 | 56 | |
michael@0 | 57 | </dialog> |