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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/referrer-policy-header.https.html

Issue 2883373002: Upstream service worker "referer" tests to WPT (Closed)
Patch Set: Incorporate review feedback 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/referrer-policy-header.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/referrer-policy-header.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/referrer-policy-header.https.html
new file mode 100644
index 0000000000000000000000000000000000000000..f2e91d472c0aff34af8bb51952d15daffcf6136b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/referrer-policy-header.https.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<title>Service Worker: check referer of fetch() with Referrer Policy</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/common/get-host-info.sub.js"></script>
+<script src="resources/test-helpers.sub.js"></script>
+<script>
+promise_test(function(t) {
+ var SCOPE = 'resources/referrer-policy-iframe.html';
+ var SCRIPT = 'resources/fetch-rewrite-worker-referrer-policy.js';
+ var host_info = get_host_info();
+ var body, unregister;
+
+ body = service_worker_unregister_and_register(t, SCRIPT, SCOPE)
+ .then(function(registration) {
+ unregister = registration.unregister.bind(registration);
+ return wait_for_state(t, registration.installing, 'activated');
+ })
+ .then(function() { return with_iframe(SCOPE); })
+ .then(function(frame) {
+ var channel = new MessageChannel();
+ t.add_cleanup(function() {
+ frame.remove();
+ });
+
+ return new Promise(function(resolve) {
+ channel.port1.onmessage = resolve;
+ frame.contentWindow.postMessage({},
+ host_info['HTTPS_ORIGIN'],
+ [channel.port2]);
+ });
+ })
+ .then(function(e) {
+ assert_equals(e.data.results, 'finish');
+ });
+
+ // Schedule un-registration to occur after test execution has completed,
+ // without hiding test failure.
+ return body
+ .then(unregister, unregister)
+ .then(function() { return body; });
+ }, 'Verify the referer with a Referrer Policy');
+</script>

Powered by Google App Engine
This is Rietveld 408576698