| Index: LayoutTests/http/tests/fetch/script-tests/filtered-response.js
|
| diff --git a/LayoutTests/http/tests/fetch/script-tests/filtered-response.js b/LayoutTests/http/tests/fetch/script-tests/filtered-response.js
|
| index d64d5285dbeefe491336282c7305a4933aae2adc..1b653b2236a88b5a9c161578b4abe52ab7ce6408 100644
|
| --- a/LayoutTests/http/tests/fetch/script-tests/filtered-response.js
|
| +++ b/LayoutTests/http/tests/fetch/script-tests/filtered-response.js
|
| @@ -48,7 +48,7 @@ var headers_cookies = ['sEt-cOokie', 'sEt-cOokie2'];
|
|
|
| // basic filtered response
|
| ['same-origin', 'cors'].forEach(function(mode) {
|
| - sequential_promise_test(function(t) {
|
| + promise_test(function(t) {
|
| return fetch(base_url, {mode: mode})
|
| .then(function(response) {
|
| assert_equals(response.type, 'basic');
|
| @@ -59,14 +59,14 @@ var headers_cookies = ['sEt-cOokie', 'sEt-cOokie2'];
|
| });
|
|
|
| // CORS filtered response
|
| -sequential_promise_test(function() {
|
| +promise_test(function() {
|
| return fetch(other_url, {mode: 'cors'})
|
| .then(function(response) {
|
| check_headers(response.headers, headers_common, [], false);
|
| });
|
| }, 'CORS filtered response');
|
|
|
| -sequential_promise_test(function() {
|
| +promise_test(function() {
|
| // Access-Control-Expose-Headers with a single header name
|
| return fetch(other_url + '?ACEHeaders=x-teSt', {mode: 'cors'})
|
| .then(function(response) {
|
|
|