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

Unified Diff: third_party/WebKit/Source/core/html/HTMLBRElement.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/HTMLBRElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLBRElement.cpp b/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
index 76cc5fcdf4a3e8a8e9f6f4e0bbad0a6835736b85..85eed16a39e68bd4e8909c542a6d1474ef4e1424 100644
--- a/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
@@ -51,7 +51,7 @@ void HTMLBRElement::CollectStyleForPresentationAttribute(
// <br clear> and <br clear=""> are just treated like <br> by Gecko, Mac IE,
// etc. -dwh
if (!value.IsEmpty()) {
- if (EqualIgnoringCase(value, "all"))
+ if (DeprecatedEqualIgnoringCase(value, "all"))
AddPropertyToPresentationAttributeStyle(style, CSSPropertyClear,
CSSValueBoth);
else
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLButtonElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698