Chromium Code Reviews

Side by Side Diff: Source/core/rendering/RenderBlock.cpp

Issue 598503002: Revert of RenderBlock::layoutPositionedObjects should use setNeedsPositionedMovementLayout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use git revert Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « LayoutTests/platform/android/fast/repaint/bugzilla-6388-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 1704 matching lines...)
1715 LayoutUnit oldLogicalTop = 0; 1715 LayoutUnit oldLogicalTop = 0;
1716 bool needsBlockDirectionLocationSetBeforeLayout = r->needsLayout() && vi ew()->layoutState()->needsBlockDirectionLocationSetBeforeLayout(); 1716 bool needsBlockDirectionLocationSetBeforeLayout = r->needsLayout() && vi ew()->layoutState()->needsBlockDirectionLocationSetBeforeLayout();
1717 if (needsBlockDirectionLocationSetBeforeLayout) { 1717 if (needsBlockDirectionLocationSetBeforeLayout) {
1718 if (isHorizontalWritingMode() == r->isHorizontalWritingMode()) 1718 if (isHorizontalWritingMode() == r->isHorizontalWritingMode())
1719 r->updateLogicalHeight(); 1719 r->updateLogicalHeight();
1720 else 1720 else
1721 r->updateLogicalWidth(); 1721 r->updateLogicalWidth();
1722 oldLogicalTop = logicalTopForChild(r); 1722 oldLogicalTop = logicalTopForChild(r);
1723 } 1723 }
1724 1724
1725 // FIXME: We should be able to do a r->setNeedsPositionedMovementLayout( ) here instead of a full layout. Need
1726 // to investigate why it does not trigger the correct invalidations in t hat case. crbug.com/350756
1725 if (info == ForcedLayoutAfterContainingBlockMoved) 1727 if (info == ForcedLayoutAfterContainingBlockMoved)
1726 r->setNeedsPositionedMovementLayout(); 1728 r->setNeedsLayout();
1727 1729
1728 r->layoutIfNeeded(); 1730 r->layoutIfNeeded();
1729 1731
1730 // Lay out again if our estimate was wrong. 1732 // Lay out again if our estimate was wrong.
1731 if (needsBlockDirectionLocationSetBeforeLayout && logicalTopForChild(r) != oldLogicalTop) 1733 if (needsBlockDirectionLocationSetBeforeLayout && logicalTopForChild(r) != oldLogicalTop)
1732 r->forceChildLayout(); 1734 r->forceChildLayout();
1733 } 1735 }
1734 1736
1735 if (hasColumns()) 1737 if (hasColumns())
1736 view()->layoutState()->setColumnInfo(columnInfo()); // FIXME: Kind of gr oss. We just put this back into the layout state so that pop() will work. 1738 view()->layoutState()->setColumnInfo(columnInfo()); // FIXME: Kind of gr oss. We just put this back into the layout state so that pop() will work.
(...skipping 2658 matching lines...)
4395 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const 4397 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const
4396 { 4398 {
4397 showRenderObject(); 4399 showRenderObject();
4398 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box()) 4400 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box())
4399 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1); 4401 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1);
4400 } 4402 }
4401 4403
4402 #endif 4404 #endif
4403 4405
4404 } // namespace blink 4406 } // namespace blink
OLDNEW
« no previous file with comments | « LayoutTests/platform/android/fast/repaint/bugzilla-6388-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine