Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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>