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