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

Unified 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698