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

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

Issue 2889153004: Upstream service worker "request" tests to WPT (Closed)
Patch Set: Add "use strict" directive Created 3 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/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>

Powered by Google App Engine
This is Rietveld 408576698