| Index: third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
|
| index 0317945ae40a8d7297b83885352f93f52552453b..024594ab16286deace7b595c5441dd3da6e6865b 100644
|
| --- a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
|
| @@ -180,7 +180,7 @@ TEST_F(EditingUtilitiesTest, AreaIdenticalElements)
|
| setBodyContent("<style>li:nth-child(even) { -webkit-user-modify: read-write; }</style><ul><li>first item</li><li>second item</li><li class=foo>third</li><li>fourth</li></ul>");
|
| updateLayoutAndStyleForPainting();
|
| StaticElementList* items = document().querySelectorAll("li", ASSERT_NO_EXCEPTION);
|
| - ASSERT(items->length() == 4);
|
| + DCHECK_EQ(items->length(), 4u);
|
|
|
| EXPECT_FALSE(areIdenticalElements(*items->item(0)->firstChild(), *items->item(1)->firstChild()))
|
| << "Can't merge non-elements. e.g. Text nodes";
|
|
|