bug1576154.sjs (315B)
1 function handleRequest(request, response) { 2 response.setStatusLine("1.1", 500, "Internal Server Error"); 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 }