tor-browser

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

file_bug795418-2.sjs (341B)


      1 // SJS file for test_bug795418-2.html
      2 "use strict";
      3 
      4 function handleRequest(request, response) {
      5   response.setHeader("Cache-Control", "no-cache", false);
      6   response.setHeader("Content-Type", "application/xhtml+xml", false);
      7   response.write(
      8     "<html contenteditable='' xmlns='http://www.w3.org/1999/xhtml'><span>AB</span></html>"
      9   );
     10 }