| Index: Source/core/html/DOMFormDataTest.cpp
|
| diff --git a/Source/core/html/DOMFormDataTest.cpp b/Source/core/html/DOMFormDataTest.cpp
|
| index 524193f1274cffa26a5a61bd303d9396dfb90dc3..7c361aebdccafd8a30e108c2f683b5214aec0751 100644
|
| --- a/Source/core/html/DOMFormDataTest.cpp
|
| +++ b/Source/core/html/DOMFormDataTest.cpp
|
| @@ -63,15 +63,15 @@ TEST(DOMFormDataTest, opacityHas)
|
| fd->append("name1", "value1");
|
|
|
| EXPECT_TRUE(fd->has("name1"));
|
| - EXPECT_TRUE(fd->hasEntry("name1"));
|
| + EXPECT_EQ(1u, fd->size());
|
|
|
| fd->makeOpaque();
|
|
|
| // Web-exposed interface should be opaque.
|
| EXPECT_FALSE(fd->has("name1"));
|
|
|
| - // Internal interface should be uneffected.
|
| - EXPECT_TRUE(fd->hasEntry("name1"));
|
| + // Internal collection should be uneffected.
|
| + EXPECT_EQ(1u, fd->size());
|
| }
|
|
|
| } // namespace blink
|
|
|