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

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

Issue 238993003: ServiceWorker: "minimal" end-to-end sample as a W3C test (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync with github Created 6 years, 8 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: LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js b/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js
new file mode 100644
index 0000000000000000000000000000000000000000..30789ad3871d3b3656808a8386d3ad99ff182ac9
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/resources/end-to-end-worker.js
@@ -0,0 +1,17 @@
+oninstall = function(e) {
+ e.waitUntil(new Promise(function(r) { setTimeout(r, 5); }));
jsbell 2014/04/16 17:43:38 I'm not happy with using setTimeout in this test.
kinuko 2014/04/17 11:32:54 I wanted to make this test dead simple / 'minimal'
+};
+
+onactivate = function(e) {
+ e.waitUntil(new Promise(function(r) { setTimeout(r, 5); }));
+};
+
+onmessage = function(e) {
+ var message = e.data;
+ if (typeof message === 'object' && 'port' in message) {
jsbell 2014/04/16 17:43:38 FWIW, `typeof null === 'object'`; the `Object(x) =
kinuko 2014/04/17 11:32:54 Yup, sgtm, please feel free to fix it.
+ var response = 'Ack for: ' + message.from;
+ try {
+ message.port.postMessage(response);
+ } catch (_) {}
+ }
+};

Powered by Google App Engine
This is Rietveld 408576698