| Index: Source/web/tests/GraphicsLayerTest.cpp
|
| diff --git a/Source/web/tests/GraphicsLayerTest.cpp b/Source/web/tests/GraphicsLayerTest.cpp
|
| index 5ae5a78a3d8cd6bcaa6e3183bea6ecf01d3bd063..29b7e1172af99bf5699c71671c72b729a328616f 100644
|
| --- a/Source/web/tests/GraphicsLayerTest.cpp
|
| +++ b/Source/web/tests/GraphicsLayerTest.cpp
|
| @@ -165,16 +165,4 @@ TEST_F(GraphicsLayerTest, applyScrollToScrollableArea)
|
| EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
|
| }
|
|
|
| -TEST_F(GraphicsLayerTest, DISABLED_setContentsToSolidColor)
|
| -{
|
| - m_graphicsLayer->setContentsToSolidColor(Color::transparent);
|
| - EXPECT_FALSE(m_graphicsLayer->contentsLayer());
|
| -
|
| - m_graphicsLayer->setContentsToSolidColor(Color::white);
|
| - EXPECT_TRUE(m_graphicsLayer->contentsLayer());
|
| -
|
| - m_graphicsLayer->setContentsToSolidColor(Color());
|
| - EXPECT_FALSE(m_graphicsLayer->contentsLayer());
|
| -}
|
| -
|
| } // namespace
|
|
|