Index: third_party/WebKit/Source/core/dom/AttributeCollection.h |
diff --git a/third_party/WebKit/Source/core/dom/AttributeCollection.h b/third_party/WebKit/Source/core/dom/AttributeCollection.h |
index ddf40ee3074d348adc4dfa8e7d4a7df4b68f76f8..30f1cb591406aff392b883e75bee36d58285c633 100644 |
--- a/third_party/WebKit/Source/core/dom/AttributeCollection.h |
+++ b/third_party/WebKit/Source/core/dom/AttributeCollection.h |
@@ -204,7 +204,7 @@ size_t AttributeCollectionGeneric<Container, ContainerMemberType>::FindSlowCase( |
// and all HTML/SVG attributes have a null namespace! |
if (!it->GetName().HasPrefix()) { |
if (should_ignore_attribute_case && |
- EqualIgnoringCase(name, it->LocalName())) |
+ DeprecatedEqualIgnoringCase(name, it->LocalName())) |
return index; |
} else { |
// FIXME: Would be faster to do this comparison without calling toString, |