blob: 890f8aa5ecc8b3d6ecf69aa0449a727463ec20bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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();
}
|