gecko-dev/dom/plugins/test/mochitest/mixed_case_mime.sjs

9 строки
205 B
JavaScript

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