зеркало из https://github.com/mozilla/pjs.git
8 строки
233 B
Plaintext
8 строки
233 B
Plaintext
|
function handleRequest(request, response) {
|
||
|
response.setHeader("Content-Type", "text/html");
|
||
|
response.write("<body onload='window.parent.onloadCount++'>" +
|
||
|
request.method + " " +
|
||
|
Date.now() +
|
||
|
"</body>");
|
||
|
}
|