Index: Source/core/rendering/LayoutRepainter.cpp |
diff --git a/Source/core/rendering/LayoutRepainter.cpp b/Source/core/rendering/LayoutRepainter.cpp |
index 7f9b4100fb411c78280c0bd4ec01fe6c21bf7cc9..94d5c4b0c8d151b825c231c1cfe722148bf10af8 100644 |
--- a/Source/core/rendering/LayoutRepainter.cpp |
+++ b/Source/core/rendering/LayoutRepainter.cpp |
@@ -44,7 +44,7 @@ LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint) |
{ |
// Hits in compositing/video/video-controls-layer-creation.html |
DisableCompositingQueryAsserts disabler; |
- m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContainer); |
+ m_oldBounds = m_object.boundsRectForRepaint(m_repaintContainer); |
m_oldOffset = m_object.positionFromRepaintContainer(m_repaintContainer); |
} |
} |
@@ -52,6 +52,7 @@ LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint) |
bool LayoutRepainter::repaintAfterLayout() |
{ |
+ fprintf(stderr, "LayoutRepainter::repaintAfterLayout\n"); |
leviw_travelin_and_unemployed
2014/05/29 20:49:00
fprintf to ALL the stderrs!!
chrishtr
2014/05/29 21:06:11
Done.
|
if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) |
return false; |