mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-01 16:31:34 +00:00
8 lines
233 B
Plaintext
8 lines
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>");
|
||
|
}
|