diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 18:34:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 18:34:59 +0000 |
commit | b0410fc20c45227756a7bbdcff65e29eb0bc4d91 (patch) | |
tree | 36bdaeed45bddfc236ac77adf672339174b3c9b3 /testing/xpcshell/moz-http2/moz-http2.js | |
parent | Adding debian version 115.9.1esr-1~deb12u1. (diff) | |
download | firefox-esr-b0410fc20c45227756a7bbdcff65e29eb0bc4d91.tar.xz firefox-esr-b0410fc20c45227756a7bbdcff65e29eb0bc4d91.zip |
Merging upstream version 115.10.0esr.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/xpcshell/moz-http2/moz-http2.js')
-rw-r--r-- | testing/xpcshell/moz-http2/moz-http2.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/xpcshell/moz-http2/moz-http2.js b/testing/xpcshell/moz-http2/moz-http2.js index 334ccd8e1c..1b602e88bb 100644 --- a/testing/xpcshell/moz-http2/moz-http2.js +++ b/testing/xpcshell/moz-http2/moz-http2.js @@ -824,6 +824,16 @@ function handleRequest(req, res) { }); push.writeHead(200, pushResponseHeaders); push.end("ok"); + } else if (u.pathname === "/hugecontinuedheaders") { + for (let i = 0; i < u.query.size; i++) { + res.setHeader( + "X-Test-Header-" + i, + "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".repeat(1024) + ); + } + res.writeHead(200); + res.end(content); + return; } else if (u.pathname === "/altsvc1") { if ( req.httpVersionMajor != 2 || |