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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.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/parser/HTMLTreeBuilderSimulator.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
index b20b813f4deeb02960b93515076e5d1f10c057f2..2ad260be0b67f2775b9db6bfc44347a59841fc70 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
@@ -85,8 +85,8 @@ static bool TokenExitsForeignContent(const CompactHTMLToken& token) {
static bool TokenExitsSVG(const CompactHTMLToken& token) {
// FIXME: It's very fragile that we special case foreignObject here to be
// case-insensitive.
- return EqualIgnoringCase(token.Data(),
- SVGNames::foreignObjectTag.LocalName());
+ return DeprecatedEqualIgnoringCase(token.Data(),
+ SVGNames::foreignObjectTag.LocalName());
}
static bool TokenExitsMath(const CompactHTMLToken& token) {

Powered by Google App Engine
This is Rietveld 408576698