summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/localstorage/test_localStorageCookieSettings.html
blob: 9860c67661b7b9897e069f0bb69fa7a56350e679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>localStorage cookies settings test</title>

<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="interOriginTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />

</head>
<body>

<script type="text/javascript">

SimpleTest.waitForExplicitFinish();

// Set cookies behavior to "always reject".
SpecialPowers.pushPrefEnv({"set": [
  ["network.cookie.cookieBehavior", 2],
]}, test1);

function test1() {
  let w = window.open("windowProxy.html");
  w.onload = _ => {
    try {
      w.localStorage.setItem("contentkey", "test-value");
      ok(false, "Setting localStorageItem should throw a security exception");
    }
    catch(ex) {
      is(ex.name, "SecurityError", "Got security exception");
    }

    w.close();

    // Set cookies behavior to "reject 3rd party"
    SpecialPowers.pushPrefEnv({"set": [["network.cookie.cookieBehavior", 1]], }, test2);
  }
}

function test2() {
  let w = window.open("windowProxy.html");
  w.onload = _ => {
    try {
      w.localStorage.setItem("contentkey", "test-value");
      ok(true, "Setting localStorageItem should not throw a security exception");
    }
    catch(ex) {
      ok(false, "Setting localStorageItem should not throw a security exception");
    }

    var fileTest = (location.protocol + "//example.com" + location.pathname)
                   .replace("test_l", "frameL");

    var myframe = w.document.createElement("iframe");
    w.document.body.appendChild(myframe);
    myframe.src = fileTest;

    w.onmessage = function(e) {
      switch (e.data.type || "") {
        case "ok":
          ok(e.data.what, e.data.msg);
          break;
        case "finish":
          w.close();
          SimpleTest.finish();
          break;
        default:
          ok(false, "Invalid type.");
      }
    };
  }
}

</script>
</body>
</html>