Index: third_party/WebKit/LayoutTests/external/wpt/fetch/api/response/response-stream-disturbed-4.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/fetch/api/response/response-stream-disturbed-4.html b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/response/response-stream-disturbed-4.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e74699211d8036e9219b51802d535de1c6b2474b |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/response/response-stream-disturbed-4.html |
@@ -0,0 +1,48 @@ |
+<!doctype html> |
+<html> |
+ <head> |
+ <meta charset="utf-8"> |
+ <title>Consuming Response body after getting a ReadableStream</title> |
+ <meta name="help" href="https://fetch.spec.whatwg.org/#response"> |
+ <meta name="help" href="https://fetch.spec.whatwg.org/#body-mixin"> |
+ <meta name="author" title="Canon Research France" href="https://www.crf.canon.fr"> |
+ <script src="/resources/testharness.js"></script> |
+ <script src="/resources/testharnessreport.js"></script> |
+ </head> |
+ <body> |
+ <script> |
+ |
+function createResponseWithCancelledReadableStream(callback) { |
+ return fetch("../resources/data.json").then(function(response) { |
+ response.body.cancel(); |
+ return callback(response); |
+ }); |
+} |
+ |
+promise_test(function(test) { |
+ return createResponseWithCancelledReadableStream(function(response) { |
+ return promise_rejects(test, new TypeError(), response.blob()); |
+ }); |
+}, "Getting blob after cancelling the Response body"); |
+ |
+promise_test(function(test) { |
+ return createResponseWithCancelledReadableStream(function(response) { |
+ return promise_rejects(test, new TypeError(), response.text()); |
+ }); |
+}, "Getting text after cancelling the Response body"); |
+ |
+promise_test(function(test) { |
+ return createResponseWithCancelledReadableStream(function(response) { |
+ return promise_rejects(test, new TypeError(), response.json()); |
+ }); |
+}, "Getting json after cancelling the Response body"); |
+ |
+promise_test(function(test) { |
+ return createResponseWithCancelledReadableStream(function(response) { |
+ return promise_rejects(test, new TypeError(), response.arrayBuffer()); |
+ }); |
+}, "Getting arrayBuffer after cancelling the Response body"); |
+ |
+ </script> |
+ </body> |
+</html> |