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

Side by Side 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, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/platform/win-xp/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 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 LayoutUnit oldLogicalTop = 0; 1708 LayoutUnit oldLogicalTop = 0;
1709 bool needsBlockDirectionLocationSetBeforeLayout = r->needsLayout() && vi ew()->layoutState()->needsBlockDirectionLocationSetBeforeLayout(); 1709 bool needsBlockDirectionLocationSetBeforeLayout = r->needsLayout() && vi ew()->layoutState()->needsBlockDirectionLocationSetBeforeLayout();
1710 if (needsBlockDirectionLocationSetBeforeLayout) { 1710 if (needsBlockDirectionLocationSetBeforeLayout) {
1711 if (isHorizontalWritingMode() == r->isHorizontalWritingMode()) 1711 if (isHorizontalWritingMode() == r->isHorizontalWritingMode())
1712 r->updateLogicalHeight(); 1712 r->updateLogicalHeight();
1713 else 1713 else
1714 r->updateLogicalWidth(); 1714 r->updateLogicalWidth();
1715 oldLogicalTop = logicalTopForChild(r); 1715 oldLogicalTop = logicalTopForChild(r);
1716 } 1716 }
1717 1717
1718 // FIXME: We should be able to do a r->setNeedsPositionedMovementLayout( ) here instead of a full layout. Need
1719 // to investigate why it does not trigger the correct invalidations in t hat case. crbug.com/350756
1720 if (info == ForcedLayoutAfterContainingBlockMoved) 1718 if (info == ForcedLayoutAfterContainingBlockMoved)
1721 r->setNeedsLayout(); 1719 r->setNeedsPositionedMovementLayout();
1722 1720
1723 r->layoutIfNeeded(); 1721 r->layoutIfNeeded();
1724 1722
1725 // Lay out again if our estimate was wrong. 1723 // Lay out again if our estimate was wrong.
1726 if (needsBlockDirectionLocationSetBeforeLayout && logicalTopForChild(r) != oldLogicalTop) 1724 if (needsBlockDirectionLocationSetBeforeLayout && logicalTopForChild(r) != oldLogicalTop)
1727 r->forceChildLayout(); 1725 r->forceChildLayout();
1728 } 1726 }
1729 1727
1730 if (hasColumns()) 1728 if (hasColumns())
1731 view()->layoutState()->setColumnInfo(columnInfo()); // FIXME: Kind of gr oss. We just put this back into the layout state so that pop() will work. 1729 view()->layoutState()->setColumnInfo(columnInfo()); // FIXME: Kind of gr oss. We just put this back into the layout state so that pop() will work.
(...skipping 3105 matching lines...) Expand 10 before | Expand all | Expand 10 after
4837 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const 4835 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const
4838 { 4836 {
4839 showRenderObject(); 4837 showRenderObject();
4840 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box()) 4838 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box())
4841 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1); 4839 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1);
4842 } 4840 }
4843 4841
4844 #endif 4842 #endif
4845 4843
4846 } // namespace blink 4844 } // namespace blink
OLDNEW
« 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