summaryrefslogtreecommitdiffstats
path: root/dom/security/test/mixedcontentblocker/file_server.sjs
blob: 58dffc5650d10c4444250da0f7969eef63809fdd (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

function handleRequest(request, response)
{
  // get the Content-Type to serve from the query string
  var contentType = null;
  request.queryString.split('&').forEach( function (val) {
     var [name, value] = val.split('=');
       if (name == "type") {
         contentType = unescape(value);
       }
  });

  // avoid confusing cache behaviors
  response.setHeader("Cache-Control", "no-cache", false);

  switch (contentType) {
    case "iframe":
      response.setHeader("Content-Type", "text/html", false);
      response.write("frame content");
      break;

    case "script":
      response.setHeader("Content-Type", "application/javascript", false);
      break;

    case "stylesheet":
      response.setHeader("Content-Type", "text/css", false);
      break;

    case "object":
      response.setHeader("Content-Type", "application/x-test", false);
      break;

   case "xhr":
      response.setHeader("Content-Type", "text/xml", false);
      response.setHeader("Access-Control-Allow-Origin", "https://example.com");
      response.write('<?xml version="1.0" encoding="UTF-8" ?><test></test>');
      break;

    default:
      response.setHeader("Content-Type", "text/html", false);
      response.write("<html><body>Hello World</body></html>");
      break;
  }
}