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 3651e0f9360dbcf1107fd9c0d3151151bab1068e..22e56552c7ee793c7d0def3c681387e2da49eb3c 100644 |
--- a/third_party/WebKit/Source/core/dom/Element.cpp |
+++ b/third_party/WebKit/Source/core/dom/Element.cpp |
@@ -2484,7 +2484,7 @@ void Element::removeAttributeInternal( |
SynchronizationOfLazyAttribute inSynchronizationOfLazyAttribute) { |
MutableAttributeCollection attributes = |
ensureUniqueElementData().attributes(); |
- ASSERT_WITH_SECURITY_IMPLICATION(index < attributes.size()); |
+ SECURITY_DCHECK(index < attributes.size()); |
QualifiedName name = attributes[index].name(); |
AtomicString valueBeingRemoved = attributes[index].value(); |