Index: Source/web/tests/GraphicsLayerTest.cpp |
diff --git a/Source/web/tests/GraphicsLayerTest.cpp b/Source/web/tests/GraphicsLayerTest.cpp |
index e9bdfd76d2be20d6b13dce8e61b0be6109141621..6bb6930105e512cf0ef1dc0b8cc1f7d27cf2dcc7 100644 |
--- a/Source/web/tests/GraphicsLayerTest.cpp |
+++ b/Source/web/tests/GraphicsLayerTest.cpp |
@@ -166,16 +166,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 |