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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp

Issue 2822183002: Fetch, XHR: Use ", " as header list value separator. (Closed)
Patch Set: Created 3 years, 8 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/modules/fetch/FetchHeaderList.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp b/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
index 4ef2381c3df2d06dc85394ea3898fd9f1b970bb4..42111cf56695e77fc51d7afac255f2dcb7e7d4f3 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
@@ -99,8 +99,7 @@ bool FetchHeaderList::Get(const String& name, String& result) const {
resultBuilder.Append(header->second);
found = true;
} else {
- // TODO(rakuco): This must be ", " instead. crbug.com/700434.
- resultBuilder.Append(',');
+ resultBuilder.Append(", ");
resultBuilder.Append(header->second);
}
}

Powered by Google App Engine
This is Rietveld 408576698