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

Unified Diff: LayoutTests/http/tests/serviceworker/multiple-register.html

Issue 674133004: [ServiceWorker] Introduce the directory restriction of ServiceWorker scope [1/3 blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/scope-default.html Created 6 years, 2 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/multiple-register.html
diff --git a/LayoutTests/http/tests/serviceworker/multiple-register.html b/LayoutTests/http/tests/serviceworker/multiple-register.html
index b248a12fd38d478944038e5693765f3a4115a600..9851bcef131690b19bfa7b6fd5aee179e2b55997 100644
--- a/LayoutTests/http/tests/serviceworker/multiple-register.html
+++ b/LayoutTests/http/tests/serviceworker/multiple-register.html
@@ -6,7 +6,7 @@
var worker_url = 'resources/empty-worker.js';
async_test(function(t) {
- var scope = 'scope/subsequent-register-from-same-window';
+ var scope = 'resources/scope/subsequent-register-from-same-window';
var registration;
service_worker_unregister_and_register(t, worker_url, scope)
@@ -31,7 +31,7 @@ async_test(function(t) {
}, 'Subsequent registrations resolve to the same registration object');
async_test(function(t) {
- var scope = 'scope/subsequent-register-from-different-iframe';
+ var scope = 'resources/scope/subsequent-register-from-different-iframe';
var frame;
var registration;
@@ -89,7 +89,7 @@ async_test(function(t) {
'registration and workers');
async_test(function(t) {
- var scope = 'scope/concurrent-register';
+ var scope = 'resources/scope/concurrent-register';
service_worker_unregister(t, scope)
.then(function() {

Powered by Google App Engine
This is Rietveld 408576698