Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp |
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp |
index 237e22190512fdcba26b6735648e2a823dbed1d9..214d2bb0d620be6fe66e369c4ea27d7975af1657 100644 |
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp |
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp |
@@ -145,9 +145,10 @@ TEST_F(PaintLayerScrollableAreaTest, |
// outline is drawn outside the padding box. |
EXPECT_TRUE(canPaintBackgroundOntoScrollingContentsLayer("scroller14")); |
- // #scroller15 cannot paint background into scrolling contents layer because |
- // the outline is drawn inside the padding box. |
- EXPECT_FALSE(canPaintBackgroundOntoScrollingContentsLayer("scroller15")); |
+ // #scroller15 can paint background into scrolling contents layer because |
+ // the outline is drawn into the decoration layer which will not be covered |
+ // up. |
+ EXPECT_TRUE(canPaintBackgroundOntoScrollingContentsLayer("scroller15")); |
// #scroller16 cannot paint background into scrolling contents layer because |
// the scroller has a clip which would not be respected by the scrolling |