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 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <title>cookie blocking test</title>
5 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
8 <script type="text/javascript">
10 function startTest()
11 {
12 try {
13 localStorage.setItem("blocked", "blockedvalue");
14 ok(false, "Exception for localStorage.setItem, ACCESS_DENY");
15 }
16 catch (ex) {
17 ok(true, "Exception for localStorage.setItem, ACCESS_DENY");
18 }
20 try {
21 localStorage.getItem("blocked");
22 ok(false, "Exception for localStorage.getItem, ACCESS_DENY");
23 }
24 catch (ex) {
25 ok(true, "Exception for localStorage.getItem, ACCESS_DENY");
26 }
28 SimpleTest.finish();
29 }
31 SimpleTest.waitForExplicitFinish();
33 SpecialPowers.pushPermissions([{'type': 'cookie', 'allow': false, 'context': document}], startTest);
35 </script>
37 </head>
39 <body>
41 </body>
42 </html>