| Index: third_party/WebKit/Source/modules/encoding/Encoding.cpp
|
| diff --git a/third_party/WebKit/Source/modules/encoding/Encoding.cpp b/third_party/WebKit/Source/modules/encoding/Encoding.cpp
|
| index 327b3d5764c8821bdfcffd5490845b0b0419fa06..cd8625b2a6b66ad0e2923a7fd87b9c2bf9849673 100644
|
| --- a/third_party/WebKit/Source/modules/encoding/Encoding.cpp
|
| +++ b/third_party/WebKit/Source/modules/encoding/Encoding.cpp
|
| @@ -10,7 +10,8 @@ namespace Encoding {
|
|
|
| bool isASCIIWhiteSpace(UChar c) {
|
| // From Encoding Standard:
|
| - // "The ASCII whitespace are code points U+0009, U+000A, U+000C, U+000D, and U+0020."
|
| + // "The ASCII whitespace are code points U+0009, U+000A, U+000C, U+000D, and
|
| + // U+0020."
|
| return c == 0x09 || c == 0x0A || c == 0x0C || c == 0x0D || c == 0x20;
|
| }
|
|
|
|
|