summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/frameStoragePrevented.html
blob: 693beff5a458750eee07ada79271a1deb7bc6b96 (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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>frame for storage prevented test</title>

<script type="text/javascript" src="https://example.com/tests/dom/tests/mochitest/general/storagePermissionsUtils.js"></script>
<script  type="text/javascript">

  task(async function() {
    // We shouldn't be able to access storage
    await storagePrevented();

    // This hash of the URI is set to #nullprincipal by the test if the current page has a null principal,
    // and thus attempting to create a dedicated worker will throw
    if (location.hash == "#nullprincipal") {
      function createWorker() {
        return new Promise((resolve, reject) => {
          var w;
          try {
            w = new Worker("workerStoragePrevented.js");
          } catch (e) {
            ok(true, "Running workers was prevented");
            resolve();
          }

          w.onerror = function() {
            ok(true, "Running workers was prevented");
            resolve();
         }
        });
      }

      await createWorker();
      return;
    }

    // Try to run a worker, which shouldn't be able to access storage
    await runWorker("workerStoragePrevented.js");
  });

</script>

</head>

<body>
</body>
</html>