Index: third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp |
index f17c368e9508b1057b312ee08661fc6e188c0106..57410aae2f5e9a744f67e0f20e05d659a6d4735a 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp |
@@ -179,10 +179,11 @@ void HTMLTextAreaElement::ParseAttribute( |
// deprecated. The soft/hard /off values are a recommendation for HTML 4 |
// extension by IE and NS 4. |
WrapMethod wrap; |
- if (EqualIgnoringCase(value, "physical") || |
- EqualIgnoringCase(value, "hard") || EqualIgnoringCase(value, "on")) |
+ if (DeprecatedEqualIgnoringCase(value, "physical") || |
+ DeprecatedEqualIgnoringCase(value, "hard") || |
+ DeprecatedEqualIgnoringCase(value, "on")) |
wrap = kHardWrap; |
- else if (EqualIgnoringCase(value, "off")) |
+ else if (DeprecatedEqualIgnoringCase(value, "off")) |
wrap = kNoWrap; |
else |
wrap = kSoftWrap; |