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

Unified Diff: LayoutTests/http/tests/serviceworker/extendable-event-waituntil.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/extendable-event-waituntil.html
diff --git a/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html b/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
index 430cc67c98f69b7b36547569d1d1f74f176ab76a..88d4cd5ea8db142264368174ce12199430a957f6 100644
--- a/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
+++ b/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
@@ -33,7 +33,7 @@ function syncWorker(test, worker, obj) {
async_test(function(t) {
// Passing scope as the test switch for worker script.
- var scope = 'install-fulfilled';
+ var scope = 'resources/install-fulfilled';
var onRegister = function(worker) {
var obj = {};
wait_for_state(t, worker, 'installed')
@@ -51,7 +51,7 @@ async_test(function(t) {
}, 'Test install event waitUntil fulfilled', properties);
async_test(function(t) {
- var scope = 'activate-fulfilled';
+ var scope = 'resources/activate-fulfilled';
var onRegister = function(worker) {
var obj = {};
wait_for_state(t, worker, 'activating')
@@ -72,7 +72,7 @@ async_test(function(t) {
}, 'Test activate event waitUntil fulfilled', properties);
async_test(function(t) {
- var scope = 'install-rejected';
+ var scope = 'resources/install-rejected';
var onRegister = function(worker) {
wait_for_state(t, worker, 'redundant')
.then(function() {
@@ -84,7 +84,7 @@ async_test(function(t) {
}, 'Test install event waitUntil rejected', properties);
async_test(function(t) {
- var scope = 'activate-rejected';
+ var scope = 'resources/activate-rejected';
var onRegister = function(worker) {
wait_for_state(t, worker, 'redundant')
.then(function() {
@@ -96,7 +96,7 @@ async_test(function(t) {
}, 'Test activate event waitUntil rejected.', properties);
async_test(function(t) {
- var scope = 'activate-multiple-fulfilled';
+ var scope = 'resources/activate-multiple-fulfilled';
var onRegister = function(worker) {
var obj1 = {};
var obj2 = {};
@@ -119,7 +119,7 @@ async_test(function(t) {
}, 'Test ExtendableEvent multiple waitUntil fulfilled.', properties);
async_test(function(t) {
- var scope = 'activate-reject-precedence';
+ var scope = 'resources/activate-reject-precedence';
var onRegister = function(worker) {
wait_for_state(t, worker, 'redundant')
.then(function() {

Powered by Google App Engine
This is Rietveld 408576698