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

Unified Diff: LayoutTests/http/tests/serviceworker/serviceworkerclients-openwindow-enumeration.html

Issue 779133003: [WORK IN PROGRESS] ServiceWorkerClients.openWindow() [Blink] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 11 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/serviceworkerclients-openwindow-enumeration.html
diff --git a/LayoutTests/http/tests/serviceworker/serviceworkerclients-openwindow-enumeration.html b/LayoutTests/http/tests/serviceworker/serviceworkerclients-openwindow-enumeration.html
new file mode 100644
index 0000000000000000000000000000000000000000..11e1aa6f4ea5ade0c11fd2c08fb98718ccb20770
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/serviceworkerclients-openwindow-enumeration.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<title>Service Worker: ServiceWorkerClients openWindow() vs. getAll() enumeration</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="resources/test-helpers.js"></script>
+<script>
+promise_test(function(test) {
+ var url = 'resources/serviceworkerclients-openwindow-enumeration-worker.js';
+ var scope = 'resources/';
+ return service_worker_unregister_and_register(test, url, scope)
+ .then(function(registration) {
+ add_completion_callback(function() {
+ registration.unregister();
+ });
+ return wait_for_update(test, registration)
+ .then(function(worker) {
+ return fetch_tests_from_worker(worker);
+ });
+ });
+}, 'ServiceWorkerClients openWindow() vs. getAll() enumeration');
+</script>
« no previous file with comments | « LayoutTests/http/tests/serviceworker/serviceworkerclients-openwindow.html ('k') | Source/modules/serviceworkers/Clients.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698