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

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

Issue 1985383002: Logging and check fail crbug/612358 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleaned up logging 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 // Make a big blob to force async construction.
7 var blob = new Blob(['it\'s me the blob',
8 new Float64Array(2*1024*1024),
9 'and more blob!']);
10 fetch('resources/simple.html?post-with-blob-body',
11 { method: 'POST', body: blob })
12 .then(resp => resp.text())
13 .then(text => { parent.done(text); })
14 .catch(error => { parent.done(error); });
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698