| Index: third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp b/third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp
|
| index 52abc190dfdd9628aee166493631f2f93826db7e..17df7e339f13217e7888eb43d6403cca086acb57 100644
|
| --- a/third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp
|
| @@ -30,7 +30,7 @@ bool SimDisplayItemList::contains(SimCanvas::CommandType type, const String& col
|
| {
|
| Color color = 0;
|
| if (!colorString.isNull())
|
| - RELEASE_ASSERT(CSSParser::parseColor(color, colorString, true));
|
| + CHECK(CSSParser::parseColor(color, colorString, true));
|
| for (auto& command : m_commands) {
|
| if (command.type == type && (colorString.isNull() || command.color == color.rgb()))
|
| return true;
|
|
|