| Index: third_party/WebKit/Source/core/html/HTMLContentElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLContentElement.cpp b/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
|
| index eb7def64d3de0d6af8df805508d552504e22bb2a..8621d34349acf819dabbe5159f4a72ee10343304 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
|
| @@ -63,7 +63,7 @@ DEFINE_TRACE(HTMLContentElement)
|
|
|
| void HTMLContentElement::parseSelect()
|
| {
|
| - ASSERT(m_shouldParseSelect);
|
| + DCHECK(m_shouldParseSelect);
|
|
|
| m_selectorList = CSSParser::parseSelector(CSSParserContext(document(), nullptr), nullptr, m_select);
|
| m_shouldParseSelect = false;
|
| @@ -97,7 +97,7 @@ static inline bool includesDisallowedPseudoClass(const CSSSelector& selector)
|
|
|
| bool HTMLContentElement::validateSelect() const
|
| {
|
| - ASSERT(!m_shouldParseSelect);
|
| + DCHECK(!m_shouldParseSelect);
|
|
|
| if (m_select.isNull() || m_select.isEmpty())
|
| return true;
|
|
|