| 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 2552dc6ebb89eed4f6413f9832f71f72af0b519c..fb3486f240035dfb75a72bea0bf9067a1c90b436 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();
|
| RawPtr<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";
|
|
|