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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/navigation-redirect-to-http.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/http/tests/serviceworker/navigation-redirect-to-http.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/navigation-redirect-to-http.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/navigation-redirect-to-http.html
deleted file mode 100644
index 879c7291a9de45ed103739a4a7b2136cf54baf20..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/navigation-redirect-to-http.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<title>Service Worker: Service Worker can receive HTTP opaqueredirect response.</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="../resources/get-host-info.js?pipe=sub"></script>
-<script src="resources/test-helpers.js"></script>
-<body></body>
-<script>
-async_test(function(t) {
- var host_info = get_host_info();
- window.addEventListener('message', t.step_func(on_message), false);
- with_iframe(
- host_info['HTTPS_ORIGIN'] + base_path() +
- 'resources/navigation-redirect-to-http-iframe.html');
- function on_message(e) {
- assert_equals(e.data.results, 'OK');
- t.done();
- }
- }, 'Verify Service Worker can recieve HTTP opaqueredirect response.');
-</script>

Powered by Google App Engine
This is Rietveld 408576698