Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 <?xml version="1.0"?>
3 <!-- Any copyright is dedicated to the Public Domain.
4 - http://creativecommons.org/publicdomain/zero/1.0/ -->
6 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
7 <?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
9 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
10 title="Mozilla Bug 765063">
11 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
12 <script type="application/javascript" src="head.js"/>
13 <!-- test results are displayed in the html:body -->
14 <body xmlns="http://www.w3.org/1999/xhtml">
15 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=741549"
16 target="_blank">Mozilla Bug 765063</a>
17 </body>
19 <script>
21 SimpleTest.waitForExplicitFinish();
23 SpecialPowers.setAllAppsLaunchable(true);
25 var mmListener = {
26 receiveMessage: function(aMessage) {
27 ppmm.removeMessageListener("Webapps:Install", mmListener);
29 var msg = aMessage.json;
30 var ioService = Components.classes["@mozilla.org/network/io-service;1"]
31 .getService(Components.interfaces.nsIIOService);
32 var uri = ioService.newURI(msg.from, null, null);
33 is(uri.prePath, "http://test", "the install origin didn't change");
35 SimpleTest.finish();
36 }
37 };
39 var ppmm = Components.classes["@mozilla.org/parentprocessmessagemanager;1"]
40 .getService(Components.interfaces.nsIMessageBroadcaster);
41 ppmm.addMessageListener("Webapps:Install", mmListener);
43 // We call this here, even though the app is installed by the helper page,
44 // because the helper page redirect would cause its install listener to unload
45 // before it can confirm the install.
46 confirmNextInstall();
48 </script>
50 <!-- Load a page that initiates an app installation and then immediately
51 - redirects to a page at a different origin. We can't do this directly
52 - inside this test page, because that would cause the test to hang. -->
53 <iframe src="http://test/chrome/dom/tests/mochitest/webapps/install_and_redirect_helper.xul"/>
55 </window>