summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html')
-rw-r--r--testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html b/testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html
deleted file mode 100644
index e74699211..000000000
--- a/testing/web-platform/tests/fetch/api/response/response-stream-disturbed-4.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!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>