| Index: third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| index ea60079f373d09d927a9fb009e63e5867c5a19a8..95d0bbb52b23a12445a6611581e378d610b42ba4 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| @@ -93,7 +93,8 @@ String EmailInputType::ConvertEmailAddressToASCII(const ScriptRegexp& regexp,
|
| StringBuilder builder;
|
| builder.Append(address, 0, at_position + 1);
|
| #if U_ICU_VERSION_MAJOR_NUM >= 59
|
| - builder.Append(icu::toUCharPtr(domain_name.getBuffer()), domain_name.length());
|
| + builder.Append(icu::toUCharPtr(domain_name.getBuffer()),
|
| + domain_name.length());
|
| #else
|
| builder.Append(domain_name.getBuffer(), domain_name.length());
|
| #endif
|
|
|