| Index: third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/FormController.cpp b/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| index 2d7c78c0737a3c38665e28b861b0fecd7f8ba576..b5c47aef977289ef653e29d130430df17d353fec 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| @@ -409,7 +409,7 @@ void DocumentState::addControl(HTMLFormControlElementWithState* control) {
|
| }
|
|
|
| void DocumentState::removeControl(HTMLFormControlElementWithState* control) {
|
| - RELEASE_ASSERT(m_formControls.contains(control));
|
| + CHECK(m_formControls.contains(control));
|
| m_formControls.remove(control);
|
| }
|
|
|
|
|