mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-27 09:48:38 +09:00
12 lines
400 B
JavaScript
12 lines
400 B
JavaScript
function handleRequest(request, response)
|
|
{
|
|
response.seizePower();
|
|
var r = 'HTTP/1.1 200 OK\r\n' +
|
|
'Content-Type: text/html\r\n' +
|
|
'Link: < \014>; rel="stylesheet",\r\n' +
|
|
'\r\n' +
|
|
'<!-- selector {} body {display:none;} --><body>PASS</body>\r\n';
|
|
response.bodyOutputStream.write(r, r.length);
|
|
response.bodyOutputStream.flush();
|
|
response.finish();
|
|
}
|