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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 264103002: [New Multicolumn] fast/multicol/multicol-with-child-renderLayer-for-input.html puts the textfield i… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: See if this 'fixes' the minor rendering difference on Mac. Created 6 years, 7 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
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 080423016f8f223105ac560c1beb7ea51703051d..7dd06a6d194678f86c54eca5e8cb1d74d288586c 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -98,7 +98,7 @@ static RenderLayer::UpdateLayerPositionsFlags updateLayerPositionFlags(RenderLay
{
RenderLayer::UpdateLayerPositionsFlags flags = didFullRepaint ? RenderLayer::NeedsFullRepaintInBacking : RenderLayer::CheckForRepaint;
- if (isRelayoutingSubtree && layer->isPaginated())
+ if (isRelayoutingSubtree && (layer->isPaginated() || layer->enclosingPaginationLayer()))
flags |= RenderLayer::UpdatePagination;
return flags;

Powered by Google App Engine
This is Rietveld 408576698