summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/file_bug642908.sjs
blob: 6d836092166f6c96a5a3f8eda7c58ba50c6e30a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function handleRequest(request, response) {
  if (request.queryString.includes("report")) {
    response.setHeader("Content-Type", "text/javascript", false);
    if (getState("loaded") == "loaded") {
      response.write(
        "ok(false, 'There was an attempt to preload the image.');"
      );
    } else {
      response.write("ok(true, 'There was no attempt to preload the image.');");
    }
    response.write("SimpleTest.finish();");
  } else {
    setState("loaded", "loaded");
    response.setHeader("Content-Type", "image/svg", false);
    response.write(
      "<svg xmlns='http://www.w3.org/2000/svg'>Not supposed to load this</svg>"
    );
  }
}