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

Unified Diff: third_party/WebKit/Source/core/fetch/CrossOriginAccessControl.cpp

Issue 2603713003: [Fetch API] Pass web-platform fetch/api/cors/cors-preflight.html. (Closed)
Patch Set: fix CrossOriginAccessControlTest Created 3 years, 11 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/Source/core/fetch/CrossOriginAccessControl.cpp
diff --git a/third_party/WebKit/Source/core/fetch/CrossOriginAccessControl.cpp b/third_party/WebKit/Source/core/fetch/CrossOriginAccessControl.cpp
index 49b16403813c70ecd395e4cd0f9e708df6755c4d..7cb3e28c32c5eaee10bffa6ded085ed1a67d9855 100644
--- a/third_party/WebKit/Source/core/fetch/CrossOriginAccessControl.cpp
+++ b/third_party/WebKit/Source/core/fetch/CrossOriginAccessControl.cpp
@@ -77,7 +77,7 @@ static AtomicString createAccessControlRequestHeadersHeader(
StringBuilder headerBuffer;
for (const String& header : filteredHeaders) {
if (!headerBuffer.isEmpty())
- headerBuffer.append(", ");
+ headerBuffer.append(",");
headerBuffer.append(header);
}

Powered by Google App Engine
This is Rietveld 408576698