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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-iframe.html

Issue 2676733002: Upstream foreign fetch tests. (Closed)
Patch Set: rebase Created 3 years, 10 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/foreign-fetch-helper-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-iframe.html
deleted file mode 100644
index 9b94c12bb936f670fce60a8d0efa9d46c30ba8e5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-iframe.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<script src="foreign-fetch-helper-script.js"></script>
-<script>
-self.onmessage = e => {
- if (e.data.worker == 'dedicated') {
- let worker = new Worker('foreign-fetch-helper-script.js');
- worker.postMessage(e.data, e.ports);
- } else if (e.data.worker == 'shared') {
- let worker = new SharedWorker('foreign-fetch-helper-script.js');
- worker.port.postMessage(e.data, e.ports);
- } else {
- handle_message(e);
- }
- };
-</script>

Powered by Google App Engine
This is Rietveld 408576698