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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js

Issue 1320023005: Set the fetch API request flags correctly for navigation requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: delegated constructors Created 5 years, 3 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
« no previous file with comments | « LayoutTests/http/tests/serviceworker/request-end-to-end.html ('k') | Source/core/loader/FrameLoadRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js b/LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js
index f58036c2cd29433168b10fcbb98f0a4cc79a07f4..2cd7eb1778af31182bc4e00dcd57a503a103cf9c 100644
--- a/LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js
+++ b/LayoutTests/http/tests/serviceworker/resources/request-end-to-end-worker.js
@@ -16,6 +16,9 @@ onfetch = function(e) {
method: e.request.method,
referrer: e.request.referrer,
headers: headers,
+ mode: e.request.mode,
+ credentials: e.request.credentials,
+ redirect: e.request.redirect,
append_header_error: append_header_error
})));
};
« no previous file with comments | « LayoutTests/http/tests/serviceworker/request-end-to-end.html ('k') | Source/core/loader/FrameLoadRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698