| Index: third_party/WebKit/Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp b/third_party/WebKit/Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp
|
| index ca07acf61aa055c0db464ea7d81f74c4ded7e368..ef2ae2f05f630f142a03f20cda0b907d2066b6ff 100644
|
| --- a/third_party/WebKit/Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp
|
| @@ -22,7 +22,7 @@ DeprecatedScheduleStyleRecalcDuringLayout::
|
| // proper state. The style recalc will still have been schedule, however.
|
| if (was_in_perform_layout_ &&
|
| lifecycle_.GetState() != DocumentLifecycle::kInPerformLayout) {
|
| - ASSERT(lifecycle_.GetState() == DocumentLifecycle::kVisualUpdatePending);
|
| + DCHECK_EQ(lifecycle_.GetState(), DocumentLifecycle::kVisualUpdatePending);
|
| lifecycle_.AdvanceTo(DocumentLifecycle::kInPerformLayout);
|
| }
|
| }
|
|
|