1
0
Fork 0
firefox/dom/xhr/tests/file_XHR_header.sjs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

8 lines
406 B
JavaScript

// 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");
}