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 <!--
3 /* Any copyright is dedicated to the Public Domain.
4 * http://creativecommons.org/publicdomain/zero/1.0/
5 */
6 -->
8 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
9 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
11 <window title="Update Wizard pages: update check, basic, license, download, and finished"
12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13 onload="runTestDefault();">
14 <script type="application/javascript"
15 src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
16 <script type="application/javascript"
17 src="utils.js"/>
19 <script type="application/javascript">
20 <![CDATA[
22 const TESTS = [ {
23 pageid: PAGEID_CHECKING
24 }, {
25 pageid: PAGEID_FOUND_BASIC,
26 buttonClick: "next"
27 }, {
28 pageid: PAGEID_LICENSE,
29 extraCheckFunction: checkRadioGroupSelectedIndex,
30 expectedRadioGroupSelectedIndex: 1,
31 extraDelayedCheckFunction: checkRemoteContentState,
32 expectedRemoteContentState: "loading",
33 extraDelayedFinishFunction: addRemoteContentLoadListener
34 }, {
35 pageid: PAGEID_LICENSE,
36 extraStartFunction: waitForRemoteContentLoaded,
37 expectedRemoteContentState: "loaded",
38 extraCheckFunction: checkRadioGroupSelectedIndex,
39 expectedRadioGroupSelectedIndex: 1,
40 extraDelayedFinishFunction: addRadioGroupSelectListenerAndClick,
41 radioClick: "accept"
42 }, {
43 pageid: PAGEID_LICENSE,
44 extraCheckFunction: checkRadioGroupSelectedIndex,
45 expectedRadioGroupSelectedIndex: 0,
46 buttonClick: "extra1"
47 }, {
48 pageid: PAGEID_FOUND_BASIC,
49 buttonClick: "next"
50 }, {
51 pageid: PAGEID_LICENSE,
52 extraCheckFunction: checkRadioGroupSelectedIndex,
53 expectedRadioGroupSelectedIndex: 0,
54 extraDelayedFinishFunction: addRadioGroupSelectListenerAndClick,
55 radioClick: "decline"
56 }, {
57 pageid: PAGEID_LICENSE,
58 extraCheckFunction: checkRadioGroupSelectedIndex,
59 expectedRadioGroupSelectedIndex: 1,
60 extraDelayedFinishFunction: addRadioGroupSelectListenerAndClick,
61 radioClick: "accept"
62 }, {
63 pageid: PAGEID_LICENSE,
64 extraCheckFunction: checkRadioGroupSelectedIndex,
65 expectedRadioGroupSelectedIndex: 0,
66 buttonClick: "next"
67 }, {
68 pageid: PAGEID_DOWNLOADING
69 }, {
70 pageid: PAGEID_FINISHED,
71 buttonClick: "extra1"
72 } ];
74 function runTest() {
75 debugDump("entering");
77 let url = URL_HTTP_UPDATE_XML + "?showLicense=1&showDetails=1" +
78 getVersionParams();
79 setUpdateURLOverride(url);
81 gUP.checkForUpdates();
82 }
84 ]]>
85 </script>
87 <body xmlns="http://www.w3.org/1999/xhtml">
88 <p id="display"></p>
89 <div id="content" style="display: none"></div>
90 <pre id="test"></pre>
91 </body>
92 </window>