| Index: third_party/WebKit/Source/core/html/RadioNodeList.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/RadioNodeList.cpp b/third_party/WebKit/Source/core/html/RadioNodeList.cpp
|
| index c05799cdbeb9fd78961e001c84e9d14843438cb9..acbdcc23701cc514d718fa1dbe00e86e78bbdb08 100644
|
| --- a/third_party/WebKit/Source/core/html/RadioNodeList.cpp
|
| +++ b/third_party/WebKit/Source/core/html/RadioNodeList.cpp
|
| @@ -93,8 +93,8 @@ bool RadioNodeList::matchesByIdOrName(const Element& testElement) const
|
|
|
| bool RadioNodeList::checkElementMatchesRadioNodeListFilter(const Element& testElement) const
|
| {
|
| - ASSERT(!shouldOnlyMatchImgElements());
|
| - ASSERT(isHTMLObjectElement(testElement) || testElement.isFormControlElement());
|
| + DCHECK(!shouldOnlyMatchImgElements());
|
| + DCHECK(isHTMLObjectElement(testElement) || testElement.isFormControlElement());
|
| if (isHTMLFormElement(ownerNode())) {
|
| HTMLFormElement* formElement = toHTMLElement(testElement).formOwner();
|
| if (!formElement || formElement != ownerNode())
|
|
|