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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/windowclient-navigate-worker.js

Issue 1604893002: ServiceWorker: Rewrite windowclient-navigate.html test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/serviceworker/windowclient-navigate.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var port = null; 1 function match_query(query_string) {
2 return self.location.search.substr(1) == query_string;
3 }
2 4
3 self.onmessage = function(e) { 5 function receive_event(event_name) {
4 port = e.data.port; 6 return new Promise(function(resolve) {
5 port.onmessage = on_message; 7 self.addEventListener(event_name, resolve, false);
6 port.postMessage('ready');
7 };
8
9 function on_message(e) {
10 var url = e.data;
11 var client;
12
13 self.clients.matchAll({ includeUncontrolled : true }).then(function(cs) {
14 cs.forEach(function(c) { c.frameType == 'nested' && (client = c); });
15 return client.navigate(url);
16 })
17 .then(function(c) {
18 if (!c)
19 port.postMessage(c);
20 else
21 port.postMessage(c.url);
22 })
23 .catch(function(e) {
24 port.postMessage(e.name);
25 }); 8 });
26 } 9 }
10
11 function navigate_test(e) {
12 var port = e.data.port;
13 var url = e.data.url;
14
15 return clients.matchAll({ includeUncontrolled : true })
16 .then(function(client_list) {
17 for (var i = 0; i < client_list.length; i++) {
18 var client = client_list[i];
19 if (client.frameType == 'nested') {
20 return client.navigate(url);
21 }
22 }
23 port.postMessage('Could not found window client.');
24 })
25 .then(function(new_client) {
26 if (new_client === null)
27 port.postMessage(new_client);
28 else
29 port.postMessage(new_client.url);
30 })
31 .catch(function(error) {
32 port.postMessage(error.name);
33 });
34 }
35 if (match_query('installing')) {
36 // If the query string is "?installing", then do test on installing worker.
37 // This is only for in-scope-but-not-controlled test.
38 receive_event('install').then(function(e) {
39 e.waitUntil(receive_event('message').then(navigate_test));
40 });
41 } else {
42 receive_event('message').then(function(e) {
43 e.waitUntil(navigate_test(e));
44 });
45 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/serviceworker/windowclient-navigate.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698