summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/dir_bug534293/file_bug534293.sjs
blob: ec3d3c80d8af0f53b2b1efade935533c87e7fa6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function handleRequest(request, response)
{
  response.setHeader("Content-Type", "text/javascript", false);
  if (request.queryString.indexOf("report") != -1) {
    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.');");
  }
}