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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTablePartElement.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/HTMLTablePartElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp b/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
index 90880a6ddb153deb23a44ce178b81390b24b6496..fbd48978bf91e93f7a475762a7820f0282c7e5fa 100644
--- a/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
@@ -67,33 +67,33 @@ void HTMLTablePartElement::CollectStyleForPresentationAttribute(
style->SetProperty(CSSProperty(CSSPropertyBackgroundImage, *image_value));
}
} else if (name == valignAttr) {
- if (EqualIgnoringCase(value, "top"))
+ if (DeprecatedEqualIgnoringCase(value, "top"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign,
CSSValueTop);
- else if (EqualIgnoringCase(value, "middle"))
+ else if (DeprecatedEqualIgnoringCase(value, "middle"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign,
CSSValueMiddle);
- else if (EqualIgnoringCase(value, "bottom"))
+ else if (DeprecatedEqualIgnoringCase(value, "bottom"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign,
CSSValueBottom);
- else if (EqualIgnoringCase(value, "baseline"))
+ else if (DeprecatedEqualIgnoringCase(value, "baseline"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign,
CSSValueBaseline);
else
AddPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign,
value);
} else 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, "absmiddle"))
+ else if (DeprecatedEqualIgnoringCase(value, "absmiddle"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign,
CSSValueCenter);
- 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/HTMLTableElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698