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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 oninstall = function(e) {
2 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'
3 };
4
5 onactivate = function(e) {
6 e.waitUntil(new Promise(function(r) { setTimeout(r, 5); }));
7 };
8
9 onmessage = function(e) {
10 var message = e.data;
11 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.
12 var response = 'Ack for: ' + message.from;
13 try {
14 message.port.postMessage(response);
15 } catch (_) {}
16 }
17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698