| Index: third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
|
| index 3022419c9ec5f33969241b3de7f43176bd65e99d..1d3f5d40cc8b5a6283f8aff9eaa7ab5549e1575c 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElementTest.cpp
|
| @@ -10,12 +10,12 @@
|
| namespace blink {
|
|
|
| TEST(HTMLTextAreaElementTest, SanitizeUserInputValue) {
|
| - UChar k_lead_surrogate = 0xD800;
|
| + UChar kLeadSurrogate = 0xD800;
|
| EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("", 0));
|
| EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("a", 0));
|
| EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue("\n", 0));
|
| StringBuilder builder;
|
| - builder.Append(k_lead_surrogate);
|
| + builder.Append(kLeadSurrogate);
|
| String lead_surrogate = builder.ToString();
|
| EXPECT_EQ("", HTMLTextAreaElement::SanitizeUserInputValue(lead_surrogate, 0));
|
|
|
|
|