summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_child-src_worker-redirect.html
blob: 188f173b8632d61789dc5100d43db2512c7d6240 (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
<!DOCTYPE HTML>
<html>
  <head>
    <title>Bug 1045891</title>
  </head>
  <body>
  <script type="text/javascript">
    var page_id = window.location.hash.substring(1);
    var redir = 'none';

    page_id.split('_').forEach(function (val) {
      var [name, value] = val.split('-');
      if (name  == 'redir') {
        redir = unescape(value);
      }
    });

    try {
      worker = new Worker('file_redirect_worker.sjs?path='
          + escape("/tests/dom/security/test/csp/file_child-src_worker.js")
          + "&redir=" + redir
          + "&page_id=" + page_id
          );

      worker.onerror = function(error) {
        var msg = error.message;
        if (msg.match(/^NetworkError/) || msg.match(/Failed to load worker script/)) {
          // this means CSP blocked it
          msg = "blocked";
        }
        window.parent.postMessage({id:page_id, message:msg}, 'http://mochi.test:8888');
        error.preventDefault();
      };

      worker.onmessage = function(ev) {
        window.parent.postMessage({id:page_id, message:"allowed"}, 'http://mochi.test:8888');

      };
      worker.postMessage('foo');
    }
    catch (e) {
      if (e.message.match(/Failed to load script/)) {
        window.parent.postMessage({id:page_id, message:"blocked"}, 'http://mochi.test:8888');
      } else {
        window.parent.postMessage({id:page_id, message:"exception"}, 'http://mochi.test:8888');
      }
    }
  </script>
  </body>
</html>