summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/dir_bug534293/file_bug534293.sjs
blob: faf44df66c4c93ed1993a8720a71cb3ee452d25b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function handleRequest(request, response) {
  response.setHeader("Content-Type", "text/javascript", false);
  if (request.queryString.includes("report")) {
    if (getState("loaded") == "loaded") {
      response.write("ok(true, 'This script was supposed to get fetched.');");
    } else {
      response.write("ok(false, 'This script was supposed to get fetched.');");
    }
  } else {
    setState("loaded", "loaded");
    response.write("ok(true, 'This script is supposed to run.');");
  }
}