| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/request-body-blob-crash-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/request-body-blob-crash-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/request-body-blob-crash-iframe.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ea6dd5c8c276a729897e2ae1263b23a9efcfea5c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/request-body-blob-crash-iframe.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="utf-8">
|
| +<title>request-body-blob-iframe</title>
|
| +<body></body>
|
| +<script>
|
| +// Make a big blob to force async construction.
|
| +var blob = new Blob(['it\'s me the blob',
|
| + new Float64Array(2*1024*1024),
|
| + 'and more blob!']);
|
| +fetch('resources/simple.html?post-with-blob-body',
|
| + { method: 'POST', body: blob })
|
| + .then(resp => resp.text())
|
| + .then(text => { parent.done(text); })
|
| + .catch(error => { parent.done(error); });
|
| +</script>
|
|
|