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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/clients-matchall-client-types-worker.js

Issue 1040993003: ServiceWorker: Support non-window clients in Clients.matchAll (2/2 blink) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/clients-matchall-client-types-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/clients-matchall-client-types-worker.js b/LayoutTests/http/tests/serviceworker/resources/clients-matchall-client-types-worker.js
new file mode 100644
index 0000000000000000000000000000000000000000..1ae72fb894453f1bbe847d239647614c45f18ce2
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/resources/clients-matchall-client-types-worker.js
@@ -0,0 +1,4 @@
+onconnect = function(e) {
+ var port = e.ports[0];
+ port.postMessage('started');
+};

Powered by Google App Engine
This is Rietveld 408576698