blob: b8d85dd3cf24c96aef93399dc153b709bd392e0c (
plain)
1
2
3
4
5
6
7
|
function handleRequest(request, response) {
response.setHeader("Content-Type", "text/html");
response.write("<body onload='window.parent.onloadCount++'>" +
request.method + " " +
Date.now() +
"</body>");
}
|