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

Unified Diff: third_party/WebKit/Source/core/dom/Element.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/dom/Element.cpp
diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
index 30353d64cbd1a9ba03f62095c55ebd828bafd4a3..a2390f6390500a66411bcdf3d0d29807dc3f0715 100644
--- a/third_party/WebKit/Source/core/dom/Element.cpp
+++ b/third_party/WebKit/Source/core/dom/Element.cpp
@@ -2949,7 +2949,7 @@ void Element::setOuterHTML(const String& html,
Node* Element::InsertAdjacent(const String& where,
Node* new_child,
ExceptionState& exception_state) {
- if (EqualIgnoringCase(where, "beforeBegin")) {
+ if (DeprecatedEqualIgnoringCase(where, "beforeBegin")) {
if (ContainerNode* parent = this->parentNode()) {
parent->InsertBefore(new_child, this, exception_state);
if (!exception_state.HadException())
@@ -2958,17 +2958,17 @@ Node* Element::InsertAdjacent(const String& where,
return nullptr;
}
- if (EqualIgnoringCase(where, "afterBegin")) {
+ if (DeprecatedEqualIgnoringCase(where, "afterBegin")) {
InsertBefore(new_child, FirstChild(), exception_state);
return exception_state.HadException() ? nullptr : new_child;
}
- if (EqualIgnoringCase(where, "beforeEnd")) {
+ if (DeprecatedEqualIgnoringCase(where, "beforeEnd")) {
AppendChild(new_child, exception_state);
return exception_state.HadException() ? nullptr : new_child;
}
- if (EqualIgnoringCase(where, "afterEnd")) {
+ if (DeprecatedEqualIgnoringCase(where, "afterEnd")) {
if (ContainerNode* parent = this->parentNode()) {
parent->InsertBefore(new_child, nextSibling(), exception_state);
if (!exception_state.HadException())
@@ -3017,8 +3017,8 @@ void Element::SetNeedsResizeObserverUpdate() {
static Element* ContextElementForInsertion(const String& where,
Element* element,
ExceptionState& exception_state) {
- if (EqualIgnoringCase(where, "beforeBegin") ||
- EqualIgnoringCase(where, "afterEnd")) {
+ if (DeprecatedEqualIgnoringCase(where, "beforeBegin") ||
+ DeprecatedEqualIgnoringCase(where, "afterEnd")) {
Element* parent = element->parentElement();
if (!parent) {
exception_state.ThrowDOMException(kNoModificationAllowedError,
@@ -3027,8 +3027,8 @@ static Element* ContextElementForInsertion(const String& where,
}
return parent;
}
- if (EqualIgnoringCase(where, "afterBegin") ||
- EqualIgnoringCase(where, "beforeEnd"))
+ if (DeprecatedEqualIgnoringCase(where, "afterBegin") ||
+ DeprecatedEqualIgnoringCase(where, "beforeEnd"))
return element;
exception_state.ThrowDOMException(
kSyntaxError, "The value provided ('" + where +
@@ -3661,9 +3661,10 @@ SpellcheckAttributeState Element::GetSpellcheckAttributeState() const {
const AtomicString& value = FastGetAttribute(spellcheckAttr);
if (value == g_null_atom)
return kSpellcheckAttributeDefault;
- if (EqualIgnoringCase(value, "true") || EqualIgnoringCase(value, ""))
+ if (DeprecatedEqualIgnoringCase(value, "true") ||
+ DeprecatedEqualIgnoringCase(value, ""))
return kSpellcheckAttributeTrue;
- if (EqualIgnoringCase(value, "false"))
+ if (DeprecatedEqualIgnoringCase(value, "false"))
return kSpellcheckAttributeFalse;
return kSpellcheckAttributeDefault;

Powered by Google App Engine
This is Rietveld 408576698