tor-browser

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

file_slow_load.sjs (259B)


      1 "use strict";
      2 
      3 function handleRequest(request, response) {
      4   response.processAsync();
      5   response.setHeader("Content-Type", "text/html");
      6   response.write("<!doctype html>Loading... ");
      7   // We don't block on this, so it's fine to never finish the response.
      8 }