| Index: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/controller-on-reload.https.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/controller-on-reload.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/controller-on-reload.https.html
|
| index 4490c707963bd9371b997bdbfd0819c6fccc9b78..e55f180ef37d145544bb72cdb74dee501774bf03 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/controller-on-reload.https.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/controller-on-reload.https.html
|
| @@ -17,7 +17,7 @@ promise_test(function(t) {
|
| .then(function(f) {
|
| frame = f;
|
| return frame.contentWindow.navigator.serviceWorker.register(
|
| - 'resources/empty-worker.js', {scope: scope});
|
| + 'empty-worker.js', {scope: 'blank.html'});
|
| })
|
| .then(function(swr) {
|
| registration = swr;
|
| @@ -42,7 +42,7 @@ promise_test(function(t) {
|
| // objects from separate windows should not be equal
|
| assert_not_equals(controller, registration.active);
|
|
|
| - return w.navigator.serviceWorker.getRegistration();
|
| + return w.navigator.serviceWorker.getRegistration('blank.html');
|
| })
|
| .then(function(frameRegistration) {
|
| assert_equals(frameRegistration.active, controller);
|
|
|