| Index: Source/core/html/forms/EmailInputType.cpp
|
| diff --git a/Source/core/html/forms/EmailInputType.cpp b/Source/core/html/forms/EmailInputType.cpp
|
| index 81e41d16cad77fece0e5d3349677a6347e7f8357..ea2863abb9ea79c55c8e37def530f1ce7f89760f 100644
|
| --- a/Source/core/html/forms/EmailInputType.cpp
|
| +++ b/Source/core/html/forms/EmailInputType.cpp
|
| @@ -101,7 +101,7 @@ String EmailInputType::convertEmailAddressToUnicode(const String& address) const
|
| return address;
|
|
|
| String languages = chrome()->client().acceptLanguages();
|
| - String unicodeHost = blink::Platform::current()->convertIDNToUnicode(address.substring(atPosition + 1), languages);
|
| + String unicodeHost = Platform::current()->convertIDNToUnicode(address.substring(atPosition + 1), languages);
|
| StringBuilder builder;
|
| builder.append(address, 0, atPosition + 1);
|
| builder.append(unicodeHost);
|
|
|