summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_XHR_header.sjs
blob: d520d2befe5d99c3cfc0f2878130c9c3ff1ba7f0 (plain)
1
2
3
4
5
6
7
8
// 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");
}