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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLIElement.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/HTMLLIElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLLIElement.cpp b/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
index e1bfc1cc739f54db9877d236f31488ab3d17b66b..5bb7beb15f010600047377e9f8a582f2eee1cb54 100644
--- a/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
@@ -56,13 +56,13 @@ CSSValueID ListTypeToCSSValueID(const AtomicString& value) {
return CSSValueUpperRoman;
if (value == "1")
return CSSValueDecimal;
- if (EqualIgnoringCase(value, "disc"))
+ if (DeprecatedEqualIgnoringCase(value, "disc"))
return CSSValueDisc;
- if (EqualIgnoringCase(value, "circle"))
+ if (DeprecatedEqualIgnoringCase(value, "circle"))
return CSSValueCircle;
- if (EqualIgnoringCase(value, "square"))
+ if (DeprecatedEqualIgnoringCase(value, "square"))
return CSSValueSquare;
- if (EqualIgnoringCase(value, "none"))
+ if (DeprecatedEqualIgnoringCase(value, "none"))
return CSSValueNone;
return CSSValueInvalid;
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLInputElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLLinkElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698