| <title>Response clone after load is finished</title> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| promise_test(function(t) { |
| return fetch('/resources/testharnessreport.js').then(function(res) { |
| assert_equals(res.status, 200); |
| var promise = new Promise((resolve) => { |
| resolveFunction = resolve; |
| // Load should be finished by now |
| return res.text().then((value) => { |
| assert_equals(value, string); |
| }, 'Ensure that cloning works when load is finished'); |
| promise_test(function(t) { |
| return fetch('/resources/download-json-with-delay.py?iteration=2&delay=100').then(function(res) { |
| assert_equals(res.status, 200); |
| // All data should not be enqueued yet. |
| return res.text().then((value) => { |
| assert_equals(value, string); |
| }, 'Ensure that cloning works when load is ongoing'); |