blob: 73ba20288daba9937a3cc0fe29208543f81067ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function handleRequest(request, response)
{
if (request.queryString.indexOf("report") != -1) {
response.setHeader("Content-Type", "text/javascript", false);
if (getState("loaded") == "loaded") {
response.write("ok(false, 'There was an attempt to preload the image.');");
} else {
response.write("ok(true, 'There was no attempt to preload the image.');");
}
response.write("SimpleTest.finish();");
} else {
setState("loaded", "loaded");
response.setHeader("Content-Type", "image/svg", false);
response.write("<svg xmlns='http://www.w3.org/2000/svg'>Not supposed to load this</svg>");
}
}
|