Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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>