Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / dom / performance / tests / test_worker_performance_entries.sjs
blob62f00c22bcefb238168344b743f4d64331f15fca
1 function handleRequest(request, response) {
2   response.setHeader("Content-Type", "text/html");
4   if (request.queryString == "redirect") {
5     response.setStatusLine(request.httpVersion, 302, "See Other");
6     response.setHeader("Location", "test_worker_performance_entries.sjs?ok");
7   } else {
8     response.setStatusLine(request.httpVersion, 200, "OK");
9     response.write("Hello world \\o/");
10   }