Bug 1346313 - Part 1: Modify Fetch's header handler delimiter to 0x2C 0x20 to align with spec. r=baku

This commit is contained in:
Tom Tung 2017-04-07 15:33:38 +08:00
Родитель 8287bed367
Коммит 06823a6bd8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -88,7 +88,7 @@ InternalHeaders::Get(const nsACString& aName, nsACString& aValue, ErrorResult& a
return; return;
} }
const char* delimiter = ","; const char* delimiter = ", ";
bool firstValueFound = false; bool firstValueFound = false;
for (uint32_t i = 0; i < mList.Length(); ++i) { for (uint32_t i = 0; i < mList.Length(); ++i) {