Index: third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp b/third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp |
index bd0821f53c697b3e3782212726780ab0a3e29b3c..94b9b8b2af7d0970292b21aa5887fa188c8af582 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLParagraphElement.cpp |
@@ -40,14 +40,14 @@ void HTMLParagraphElement::CollectStyleForPresentationAttribute( |
const AtomicString& value, |
MutableStylePropertySet* style) { |
if (name == alignAttr) { |
- if (EqualIgnoringCase(value, "middle") || |
- EqualIgnoringCase(value, "center")) |
+ if (DeprecatedEqualIgnoringCase(value, "middle") || |
+ DeprecatedEqualIgnoringCase(value, "center")) |
AddPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, |
CSSValueWebkitCenter); |
- else if (EqualIgnoringCase(value, "left")) |
+ else if (DeprecatedEqualIgnoringCase(value, "left")) |
AddPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, |
CSSValueWebkitLeft); |
- else if (EqualIgnoringCase(value, "right")) |
+ else if (DeprecatedEqualIgnoringCase(value, "right")) |
AddPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, |
CSSValueWebkitRight); |
else |