Index: Source/core/html/FormDataList.cpp |
diff --git a/Source/core/html/FormDataList.cpp b/Source/core/html/FormDataList.cpp |
index 6096a232ad7f06386f4f3b24b8b63ae9e2082d3d..395aaa4386c1314f98f63bae20af7913ba5fe761 100644 |
--- a/Source/core/html/FormDataList.cpp |
+++ b/Source/core/html/FormDataList.cpp |
@@ -32,7 +32,7 @@ FormDataList::FormDataList(const WTF::TextEncoding& c) |
void FormDataList::appendString(const String& string) |
{ |
- CString encodedString = m_encoding.encode(string, WTF::EntitiesForUnencodables); |
+ CString encodedString = m_encoding.encode(string, WTF::NoNormalization, WTF::EntitiesForUnencodables); |
m_items.append(normalizeLineEndingsToCRLF(encodedString)); |
} |