mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-23 03:32:39 +00:00
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
|
|
function handleRequest(request, response)
|
|
{
|
|
// avoid confusing cache behaviors
|
|
response.setHeader("Cache-Control", "no-cache", false);
|
|
response.setHeader("Content-Type", "application/json", false);
|
|
|
|
// used by test_user_agent_updates test
|
|
response.write(decodeURIComponent(request.queryString));
|
|
}
|
|
|