tor-browser

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

object-immediate-intrinsic-size.sjs (295B)


      1 function handleRequest(request, response) {
      2   response.setStatusLine(null, 200, "OK");
      3   response.setHeader("Content-Type", "image/svg+xml", false);
      4 
      5   let body =
      6     "<svg xmlns='http://www.w3.org/2000/svg' width='70' height='0'></svg>";
      7   response.bodyOutputStream.write(body, body.length);
      8 }