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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js

Issue 2893743003: Upstream service wrkr "registration" tests to WPT (Closed)
Patch Set: 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/end-to-end-worker.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js
deleted file mode 100644
index d45a50556a93c7e38d94ac05b90d2d733c04896a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js
+++ /dev/null
@@ -1,7 +0,0 @@
-onmessage = function(e) {
- var message = e.data;
- if (typeof message === 'object' && 'port' in message) {
- var response = 'Ack for: ' + message.from;
- message.port.postMessage(response);
- }
-};

Powered by Google App Engine
This is Rietveld 408576698