summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_XHR_header.sjs
blob: ad829d6c9b93ecb4ea4f3a38d0e12a5b04ba1045 (plain)
1
2
3
4
5
6
7
8
9
// SJS file for getAllResponseRequests vs getResponseRequest
function handleRequest(request, response)
{
  // Header strings are interpreted by truncating the characters in them to
  // bytes, so U+2026 HORIZONTAL ELLIPSIS here must be encoded manually: using
  // "…" as the string would write a \x26 byte.
  response.setHeader("X-Custom-Header-Bytes", "\xE2\x80\xA6", false);
  response.write("42");
}