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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameSetElement.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/HTMLFrameSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
index ae215b006ef6f952c9df3caad8f25869abeacff1..ba1fbf476e6ba8f8354b0fa99b547b62dbf9f189 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
@@ -88,11 +88,12 @@ void HTMLFrameSetElement::ParseAttribute(
}
} else if (name == frameborderAttr) {
if (!value.IsNull()) {
- if (EqualIgnoringCase(value, "no") || EqualIgnoringCase(value, "0")) {
+ if (DeprecatedEqualIgnoringCase(value, "no") ||
+ DeprecatedEqualIgnoringCase(value, "0")) {
frameborder_ = false;
frameborder_set_ = true;
- } else if (EqualIgnoringCase(value, "yes") ||
- EqualIgnoringCase(value, "1")) {
+ } else if (DeprecatedEqualIgnoringCase(value, "yes") ||
+ DeprecatedEqualIgnoringCase(value, "1")) {
frameborder_set_ = true;
}
} else {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp ('k') | third_party/WebKit/Source/core/html/HTMLHRElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698