tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

file_bug649134-1.sjs (379B)


      1 function handleRequest(request, response) {
      2   response.seizePower();
      3   var r =
      4     "HTTP/1.1 200 OK\r\n" +
      5     "Content-Type: text/html\r\n" +
      6     'Link: <		\014>; rel="stylesheet"\r\n' +
      7     "\r\n" +
      8     "<!-- selector {} body {display:none;} --><body>PASS</body>\r\n";
      9   response.bodyOutputStream.write(r, r.length);
     10   response.bodyOutputStream.flush();
     11   response.finish();
     12 }