trisquel-icecat/icecat/dom/plugins/test/mochitest/mixed_case_mime.sjs

7 lines
189 B
JavaScript

function handleRequest(request, response) {
response.processAsync();
response.setHeader("Content-Type", "image/pNG", false);
response.write("Hello world.\n");
response.finish();
}