| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/request-body-blob-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/request-body-blob-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/request-body-blob-iframe.html
|
| deleted file mode 100644
|
| index 4abf5812c91373199b2c13bfca1476b9cef656d9..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/request-body-blob-iframe.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<meta charset="utf-8">
|
| -<title>request-body-blob-iframe</title>
|
| -<body></body>
|
| -<script>
|
| -var blob = new Blob(['it\'s me the blob',
|
| - 'and more blob!']);
|
| -fetch('simple.html?post-with-blob-body',
|
| - { method: 'POST', body: blob })
|
| - .then(resp => {
|
| - if (!resp.ok)
|
| - return Promise.reject('bad response: ' + resp.status);
|
| - return resp.text()
|
| - })
|
| - .then(text => parent.done(text))
|
| - .catch(error => {
|
| - var reason = error.message || error.name || error;
|
| - parent.done('error: ' + reason);
|
| - });
|
| -</script>
|
|
|