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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/navigation-redirect-to-http-iframe.html

Issue 2872363002: Upstream service worker navigation tests to WPT (Closed)
Patch Set: Created 3 years, 7 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/resources/navigation-redirect-to-http-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/navigation-redirect-to-http-iframe.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/navigation-redirect-to-http-iframe.html
similarity index 80%
rename from third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/navigation-redirect-to-http-iframe.html
rename to third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/navigation-redirect-to-http-iframe.html
index 234ba15e6af5674878d7a7d629ec895aeebb13ff..40e27c630d29c694295374e83680da59944b08a8 100644
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/navigation-redirect-to-http-iframe.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/navigation-redirect-to-http-iframe.html
@@ -1,8 +1,8 @@
<!DOCTYPE html>
-<script src="../../resources/get-host-info.js?pipe=sub"></script>
-<script src="test-helpers.js"></script>
+<script src="/common/get-host-info.sub.js"></script>
+<script src="test-helpers.sub.js"></script>
<script>
-var SCOPE = './navigation-redirect-to-http.php';
+var SCOPE = './redirect.py?Redirect=' + encodeURI('http://example.com');
var SCRIPT = 'navigation-redirect-to-http-worker.js';
var host_info = get_host_info();
@@ -26,7 +26,7 @@ navigator.serviceWorker.getRegistration(SCOPE)
})
.catch(function(reason) {
window.parent.postMessage({results: 'FAILURE: ' + reason.message},
- host_info['HTTP_ORIGIN']);
+ host_info['HTTPS_ORIGIN']);
});
function on_state_change(event) {
@@ -36,8 +36,7 @@ function on_state_change(event) {
.then(function(frame) {
window.parent.postMessage(
{results: frame.contentDocument.body.textContent},
- host_info['HTTP_ORIGIN']);
+ host_info['HTTPS_ORIGIN']);
});
}
-
</script>

Powered by Google App Engine
This is Rietveld 408576698