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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/clients-matchall-on-evaluation-worker.js

Issue 2778903002: Upstream service worker `client` tests to WPT (Closed)
Patch Set: Remove unnecessary branch Created 3 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: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/clients-matchall-on-evaluation-worker.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/clients-matchall-on-evaluation-worker.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/clients-matchall-on-evaluation-worker.js
deleted file mode 100644
index e3de40f64869463b4df096f593b03ce135ce4df8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/clients-matchall-on-evaluation-worker.js
+++ /dev/null
@@ -1,11 +0,0 @@
-importScripts('test-helpers.js');
-
-var page_url = normalizeURL('../clients-matchall-on-evaluation.html');
-
-self.clients.matchAll({includeUncontrolled: true})
- .then(function(clients) {
- clients.forEach(function(client) {
- if (client.url == page_url)
- client.postMessage('matched');
- });
- });

Powered by Google App Engine
This is Rietveld 408576698