Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: Source/core/rendering/RenderBlock.cpp

Issue 414123006: RenderBlock::layoutPositionedObjects should use setNeedsPositionedMovementLayout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/platform/win-xp/fast/repaint/bugzilla-6388-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderBlock.cpp
diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
index 9e6444c78d1946e3854d112a31650aa2188d2c8f..8151203f9cd21376bafc323f2af88b748186f018 100644
--- a/Source/core/rendering/RenderBlock.cpp
+++ b/Source/core/rendering/RenderBlock.cpp
@@ -1715,10 +1715,8 @@ void RenderBlock::layoutPositionedObjects(bool relayoutChildren, PositionedLayou
oldLogicalTop = logicalTopForChild(r);
}
- // FIXME: We should be able to do a r->setNeedsPositionedMovementLayout() here instead of a full layout. Need
- // to investigate why it does not trigger the correct invalidations in that case. crbug.com/350756
if (info == ForcedLayoutAfterContainingBlockMoved)
- r->setNeedsLayout();
+ r->setNeedsPositionedMovementLayout();
r->layoutIfNeeded();
« no previous file with comments | « LayoutTests/platform/win-xp/fast/repaint/bugzilla-6388-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698