mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Update web-platform-tests to revision fb15e14b52049f952612623ee0d7fb7a620a57c9
This commit is contained in:
parent
200cc8aa6b
commit
4a942c982f
141 changed files with 2563 additions and 1589 deletions
|
@ -1,19 +1,18 @@
|
|||
async_test(t => {
|
||||
const client = new XMLHttpRequest();
|
||||
client.onload = t.step_func_done(() => {
|
||||
assert_equals(client.getResponseHeader("foo-test"), "1, 2, 3");
|
||||
});
|
||||
client.onerror = t.unreached_func("unexpected error");
|
||||
client.open("GET", "resources/headers-basic.asis");
|
||||
client.send();
|
||||
}, "getResponseHeader('foo-test')");
|
||||
|
||||
async_test(t => {
|
||||
const client = new XMLHttpRequest();
|
||||
client.onload = t.step_func_done(() => {
|
||||
assert_equals(client.getResponseHeader("www-authenticate"), "1, 2, 3, 4");
|
||||
});
|
||||
client.onerror = t.unreached_func("unexpected error");
|
||||
client.open("GET", "resources/headers-www-authenticate.asis");
|
||||
client.send();
|
||||
}, "getResponseHeader('www-authenticate')");
|
||||
[
|
||||
["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]);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue