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

Unified Diff: LayoutTests/http/tests/serviceworker/unregister.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.html
diff --git a/LayoutTests/http/tests/serviceworker/unregister.html b/LayoutTests/http/tests/serviceworker/unregister.html
index fac29798f191f330022ee06fc95317850f7d3852..54be479d1aeff9c5a0d623ff649cdc1c43d41c90 100644
--- a/LayoutTests/http/tests/serviceworker/unregister.html
+++ b/LayoutTests/http/tests/serviceworker/unregister.html
@@ -4,7 +4,7 @@
<script src="resources/test-helpers.js"></script>
<script>
async_test(function(t) {
- var scope = 'scope/unregister-twice';
+ var scope = 'resources/scope/unregister-twice';
var registration;
navigator.serviceWorker.register('resources/empty-worker.js',
{scope: scope})
@@ -24,7 +24,7 @@ async_test(function(t) {
}, 'Unregister twice');
async_test(function(t) {
- var scope = 'scope/successful-unregister/';
+ var scope = 'resources/scope/successful-unregister/';
navigator.serviceWorker.register('resources/empty-worker.js',
{scope: scope})
.then(function(registration) {

Powered by Google App Engine
This is Rietveld 408576698