Index: Source/core/layout/LayoutObject.cpp |
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp |
index 822373f88222ca5d4d057771d71ac812fcc2e727..3083b392c60aa19924b621cf8a906b5e4c449ceb 100644 |
--- a/Source/core/layout/LayoutObject.cpp |
+++ b/Source/core/layout/LayoutObject.cpp |
@@ -636,7 +636,7 @@ bool LayoutObject::skipInvalidationWhenLaidOutChildren() const |
if (isSVG() || (isRenderBlockFlow() && toRenderBlockFlow(this)->firstLineBox())) |
return false; |
- return rendererHasNoBoxEffect(); |
+ return rendererHasNoBoxEffect() && !hasNonCompositedScrollbars(); |
dsinclair
2015/02/23 15:13:53
Can we pull this out to be (assuming the following
mstensho (USE GERRIT)
2015/02/23 17:22:38
Done.
|
} |
RenderBlock* LayoutObject::firstLineBlock() const |