Index: third_party/WebKit/Source/core/html/parser/HTMLStackItem.h |
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h b/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h |
index 68fd85be29ebb8d88aa2fb436a3f62be6afe20b7..9fd928027f9c89810cc348d8187adf61a0137779 100644 |
--- a/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h |
+++ b/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h |
@@ -65,11 +65,11 @@ class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { |
const AtomicString& localName() const { return m_tokenLocalName; } |
const Vector<Attribute>& attributes() const { |
- ASSERT(m_tokenLocalName); |
+ DCHECK(m_tokenLocalName); |
return m_tokenAttributes; |
} |
Attribute* getAttributeItem(const QualifiedName& attributeName) { |
- ASSERT(m_tokenLocalName); |
+ DCHECK(m_tokenLocalName); |
return findAttributeInVector(m_tokenAttributes, attributeName); |
} |