| Index: LayoutTests/http/tests/fetch/script-tests/request.js
|
| diff --git a/LayoutTests/http/tests/fetch/script-tests/request.js b/LayoutTests/http/tests/fetch/script-tests/request.js
|
| index 7de3ba6c804ee5673f747f1fd1eef15b95e6e593..44ef797bf80e9f255a731fae91c734315fbbf0ce 100644
|
| --- a/LayoutTests/http/tests/fetch/script-tests/request.js
|
| +++ b/LayoutTests/http/tests/fetch/script-tests/request.js
|
| @@ -525,10 +525,9 @@ promise_test(function(t) {
|
| .then(function(blob) {
|
| assert_equals(blob.type, 'text/plain');
|
| assert_equals(req.headers.get('Content-Type'), 'text/plain');
|
| -// TODO(yhirano): Currently blob() calling sets |bodyUsed| parmanently. Fix it.
|
| -// return new Request(req).blob();
|
| -// }).then(function(blob) {
|
| -// assert_equals(blob.type, 'text/plain');
|
| + return new Request(req).blob();
|
| + }).then(function(blob) {
|
| + assert_equals(blob.type, 'text/plain');
|
| });
|
| }, 'MIME type for Blob with non-empty type');
|
|
|
|
|