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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html

Issue 2691903005: ServiceWorker: Change base URL for parsing script URL and scope URL (Closed)
Patch Set: Address comments on tests Created 3 years, 10 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: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html
index 1089cffda914262840396aac65ab1272bd39a3c1..e1d948028f68478ba46346956f149255b63bb98d 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/multiple-register.https.html
@@ -45,7 +45,8 @@ async_test(function(t) {
.then(function(f) {
frame = f;
return frame.contentWindow.navigator.serviceWorker.register(
- worker_url, { scope: scope });
+ 'empty-worker.js',
+ { scope: 'scope/subsequent-register-from-different-iframe' });
})
.then(function(new_registration) {
assert_not_equals(

Powered by Google App Engine
This is Rietveld 408576698