mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7 lines
198 B
Plaintext
7 lines
198 B
Plaintext
|
// SJS file for getAllResponseRequests vs getResponseRequest
|
||
|
function handleRequest(request, response)
|
||
|
{
|
||
|
response.setHeader("X-Custom-Header-Bytes", "…", false);
|
||
|
response.write("42");
|
||
|
}
|