blob: 02b1a1ede8335a5b7152160ed119d25990bac579 (
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(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.');");
}
}
|