1
0
Fork 0
firefox/dom/fetch/tests/test_invalid_header_exception.html
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

38 lines
992 B
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1629390
-->
<head>
<title>Test for Bug 1629390</title>
<meta charset="UTF-8">
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1629390">Mozilla Bug 1629390</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 1629390 **/
let headerNames = [
['a˻b', 'a\uFFFD\uFFFDb'],
['Àaª', '\uFFFDa\uFFFD'],
['˻b', '\uFFFD\uFFFDb'],
['\xEAa', '\uFFFDa'],
['\xC2\x7F', '\uFFFD\x7F'],
];
for (let [invalid, corrected] of headerNames) {
try {
new Headers([[invalid, '']]);
} catch(e) {
is(e.message, `Headers constructor: ${corrected} is an invalid header name.`);
}
}
</script>
</pre>
</body>
</html>