mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 3b3585e368841b77caea8576fa56cef91c3fbdf0
This commit is contained in:
parent
d00639c55f
commit
3b4f0ec0bb
541 changed files with 14609 additions and 3288 deletions
|
@ -11,4 +11,28 @@ promise_test(function() {
|
|||
});
|
||||
}, "Request through fetch should have 'accept' header with value '*/*'");
|
||||
|
||||
promise_test(function() {
|
||||
return fetch(RESOURCES_DIR + "inspect-headers.py?headers=Accept", {"headers": [["Accept", "custom/*"]]}).then(function(response) {
|
||||
assert_equals(response.status, 200, "HTTP status is 200");
|
||||
assert_equals(response.type , "basic", "Response's type is basic");
|
||||
assert_equals(response.headers.get("x-request-accept"), "custom/*", "Request has accept header with value 'custom/*'");
|
||||
});
|
||||
}, "Request through fetch should have 'accept' header with value 'custom/*'");
|
||||
|
||||
promise_test(function() {
|
||||
return fetch(RESOURCES_DIR + "inspect-headers.py?headers=Accept-Language").then(function(response) {
|
||||
assert_equals(response.status, 200, "HTTP status is 200");
|
||||
assert_equals(response.type , "basic", "Response's type is basic");
|
||||
assert_true(response.headers.has("x-request-accept-language"));
|
||||
});
|
||||
}, "Request through fetch should have a 'accept-language' header");
|
||||
|
||||
promise_test(function() {
|
||||
return fetch(RESOURCES_DIR + "inspect-headers.py?headers=Accept-Language", {"headers": [["Accept-Language", "bzh"]]}).then(function(response) {
|
||||
assert_equals(response.status, 200, "HTTP status is 200");
|
||||
assert_equals(response.type , "basic", "Response's type is basic");
|
||||
assert_equals(response.headers.get("x-request-accept-language"), "bzh", "Request has accept header with value 'bzh'");
|
||||
});
|
||||
}, "Request through fetch should have 'accept-language' header with value 'bzh'");
|
||||
|
||||
done();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue