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