summaryrefslogtreecommitdiffstats
path: root/test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html')
-rw-r--r--test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html b/test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html
new file mode 100644
index 0000000..ec930a8
--- /dev/null
+++ b/test/wpt/tests/service-workers/cache-storage/crashtests/cache-response-clone.https.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html class="test-wait">
+<meta charset="utf-8">
+<script type="module">
+ const cache = await window.caches.open('cache_name_0')
+ await cache.add("")
+ const resp1 = await cache.match("")
+ const readStream = resp1.body
+ // Cloning will open the stream via NS_AsyncCopy in Gecko
+ resp1.clone()
+ // Give a little bit of time
+ await new Promise(setTimeout)
+ // At this point the previous open operation is about to finish but not yet.
+ // It will finish after the second open operation is made, potentially causing incorrect state.
+ await readStream.getReader().read();
+ document.documentElement.classList.remove('test-wait')
+</script>