Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/request-body-blob-iframe.html

Issue 1967683003: service worker: Wait for request body blobs to finish construction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>request-body-blob-iframe</title>
4 <body></body>
5 <script>
6 var blob = new Blob(['it\'s me the blob',
7 'and more blob!']);
8 fetch('resources/simple.html?post-with-blob-body',
9 { method: 'POST', body: blob })
10 .then(resp => resp.text())
11 .then(text => { parent.done(text); })
12 .catch(error => { parent.done(error); });
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698