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.
1 <?xml version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
3 <!--
4 XUL Widget Test for preferences window
5 -->
6 <prefwindow xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
7 title="preferences window"
8 windowtype="test:preferences2"
9 buttons="accept,cancel"
10 onload="RunTest(window.arguments)"
11 >
12 <script type="application/javascript">
13 <![CDATA[
14 function RunTest(aArgs)
15 {
16 // open child
17 document.documentElement.openSubDialog("window_preferences3.xul", "", {test: aArgs[0], accept: aArgs[1]});
18 // close dialog
19 document.documentElement[aArgs[1] ? "acceptDialog" : "cancelDialog"]();
20 }
21 ]]>
22 </script>
24 <prefpane id="sample_pane" label="Sample Prefpane"/>
25 </prefwindow>