summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/mixed_case_mime.sjs
blob: 57b48b4b967010f938ea864ea7cc25e4577d9550 (plain)
1
2
3
4
5
6
7
function handleRequest(request, response) {
  response.processAsync();
  response.setHeader("Content-Type", "image/pNG", false);

  response.write("Hello world.\n");
  response.finish();
}