Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /xhr/getresponseheader.any.html - WPT Dashboard Interop Dashboard
- /xhr/getresponseheader.any.worker.html - WPT Dashboard Interop Dashboard
[
["content-length", "0", "header-content-length"],
["content-length", "0, 0", "header-content-length-twice"],
["double-trouble", ", ", "headers-double-empty"],
["foo-test", "1, 2, 3", "headers-basic"],
["heya", ", \u000B\u000C, 1, , , 2", "headers-some-are-empty"],
["www-authenticate", "1, 2, 3, 4", "headers-www-authenticate"],
].forEach(testValues => {
async_test(t => {
const client = new XMLHttpRequest();
client.onload = t.step_func_done(() => {
assert_equals(client.getResponseHeader(testValues[0]), testValues[1]);
});
client.onerror = t.unreached_func("unexpected error");
client.open("GET", "resources/" + testValues[2] + ".asis");
client.send();
}, "getResponseHeader('" + testValues[0] + "') expects " + testValues[1]);
});