summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_connect-src.html
blob: 17a940a0e02f614e080bdfca742b5d5994be46f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html>
  <head>
    <title>Bug 1031530 - Test mapping of XMLHttpRequest to connect-src</title>
  </head>
  <body>
  <script type="text/javascript">

    try {
      // Please note that file_testserver.sjs?foo does not return a response.
      // For testing purposes this is not necessary because we only want to check
      // whether CSP allows or blocks the load.
      var xhr = new XMLHttpRequest();
      xhr.open("GET", "file_testserver.sjs?foo", false);
      xhr.send(null);
    }
    catch (e) { }

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