Index: third_party/WebKit/Source/core/html/HTMLHRElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp |
index adbbe3bc09aa0802c1a97d1560e86fc1a8d5f294..a2fd9af15a6858417349d7bc95b0963d70784134 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp |
@@ -52,13 +52,13 @@ void HTMLHRElement::CollectStyleForPresentationAttribute( |
const AtomicString& value, |
MutableStylePropertySet* style) { |
if (name == alignAttr) { |
- if (EqualIgnoringCase(value, "left")) { |
+ if (DeprecatedEqualIgnoringCase(value, "left")) { |
AddPropertyToPresentationAttributeStyle( |
style, CSSPropertyMarginLeft, 0, |
CSSPrimitiveValue::UnitType::kPixels); |
AddPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, |
CSSValueAuto); |
- } else if (EqualIgnoringCase(value, "right")) { |
+ } else if (DeprecatedEqualIgnoringCase(value, "right")) { |
AddPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, |
CSSValueAuto); |
AddPropertyToPresentationAttributeStyle( |