summaryrefslogtreecommitdiffstats
path: root/dom/performance/tests/test_worker_performance_entries.sjs
blob: 62f00c22bcefb238168344b743f4d64331f15fca (plain)
1
2
3
4
5
6
7
8
9
10
11
function handleRequest(request, response) {
  response.setHeader("Content-Type", "text/html");

  if (request.queryString == "redirect") {
    response.setStatusLine(request.httpVersion, 302, "See Other");
    response.setHeader("Location", "test_worker_performance_entries.sjs?ok");
  } else {
    response.setStatusLine(request.httpVersion, 200, "OK");
    response.write("Hello world \\o/");
  }
}