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

Unified Diff: third_party/WebKit/Source/core/html/HTMLUListElement.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/HTMLUListElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLUListElement.cpp b/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
index c815669238a3222d90f185f61b2b10f8ba1aab06..85f3d947a1892682707056cf620c61d55e68ca88 100644
--- a/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
@@ -46,16 +46,16 @@ void HTMLUListElement::CollectStyleForPresentationAttribute(
const AtomicString& value,
MutableStylePropertySet* style) {
if (name == typeAttr) {
- if (EqualIgnoringCase(value, "disc"))
+ if (DeprecatedEqualIgnoringCase(value, "disc"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
CSSValueDisc);
- else if (EqualIgnoringCase(value, "circle"))
+ else if (DeprecatedEqualIgnoringCase(value, "circle"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
CSSValueCircle);
- else if (EqualIgnoringCase(value, "square"))
+ else if (DeprecatedEqualIgnoringCase(value, "square"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
CSSValueSquare);
- else if (EqualIgnoringCase(value, "none"))
+ else if (DeprecatedEqualIgnoringCase(value, "none"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
CSSValueNone);
} else {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp ('k') | third_party/WebKit/Source/core/html/LinkRelAttribute.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698