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

Unified Diff: LayoutTests/http/tests/serviceworker/unregister-then-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/unregister-then-register.html
diff --git a/LayoutTests/http/tests/serviceworker/unregister-then-register.html b/LayoutTests/http/tests/serviceworker/unregister-then-register.html
index 25ff0c47ba3ce8121abce7cf6ae509b7c8bb5dd1..3b894ae9411fed25c839cfc3755a0ac7fc48c81a 100644
--- a/LayoutTests/http/tests/serviceworker/unregister-then-register.html
+++ b/LayoutTests/http/tests/serviceworker/unregister-then-register.html
@@ -6,7 +6,7 @@
var worker_url = 'resources/empty-worker.js';
async_test(function(t) {
- var scope = 'scope/re-register-resolves-to-new-value';
+ var scope = 'resources/scope/re-register-resolves-to-new-value';
var iframe;
var registration;
@@ -33,7 +33,7 @@ async_test(function(t) {
}, 'Unregister then register resolves to a new value');
async_test(function(t) {
- var scope = 'scope/re-register-while-old-registration-in-use';
+ var scope = 'resources/scope/re-register-while-old-registration-in-use';
var registration;
service_worker_unregister_and_register(t, worker_url, scope)
@@ -63,7 +63,7 @@ async_test(function(t) {
'registration is in use.');
async_test(function(t) {
- var scope = 'scope/re-register-does-not-affect-existing-controllee';
+ var scope = 'resources/scope/re-register-does-not-affect-existing-controllee';
var iframe;
var registration;
var controller;
@@ -101,7 +101,7 @@ async_test(function(t) {
}, 'Unregister then register does not affect existing controllee');
async_test(function(t) {
- var scope = 'scope/resurrection';
+ var scope = 'resources/scope/resurrection';
var iframe;
var registration;

Powered by Google App Engine
This is Rietveld 408576698