Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: third_party/WebKit/Source/core/html/HTMLDivElement.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLDivElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLDivElement.cpp b/third_party/WebKit/Source/core/html/HTMLDivElement.cpp
index 7bac98067059b05001e07e3c44d09a98807cb1eb..2586970e2d6bb8551b817b18b0dc8a79e0b507b7 100644
--- a/third_party/WebKit/Source/core/html/HTMLDivElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLDivElement.cpp
@@ -40,14 +40,14 @@ void HTMLDivElement::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
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLButtonElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698