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

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

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address reviewer comments Created 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ight reserved. 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ight reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2113 } else if (o->isText() || (o->isRenderInline() && !walker.atEndOfInl ine())) { 2113 } else if (o->isText() || (o->isRenderInline() && !walker.atEndOfInl ine())) {
2114 if (!o->isText()) 2114 if (!o->isText())
2115 toRenderInline(o)->updateAlwaysCreateLineBoxes(layoutState.i sFullLayout()); 2115 toRenderInline(o)->updateAlwaysCreateLineBoxes(layoutState.i sFullLayout());
2116 if (layoutState.isFullLayout() || o->selfNeedsLayout()) 2116 if (layoutState.isFullLayout() || o->selfNeedsLayout())
2117 dirtyLineBoxesForRenderer(o, layoutState.isFullLayout()); 2117 dirtyLineBoxesForRenderer(o, layoutState.isFullLayout());
2118 o->clearNeedsLayout(); 2118 o->clearNeedsLayout();
2119 } 2119 }
2120 } 2120 }
2121 2121
2122 for (size_t i = 0; i < replacedChildren.size(); i++) 2122 for (size_t i = 0; i < replacedChildren.size(); i++)
2123 replacedChildren[i]->layoutIfNeeded(); 2123 replacedChildren[i]->layoutIfNeeded();
2124 2124
2125 layoutRunsAndFloats(layoutState, hasInlineChild); 2125 layoutRunsAndFloats(layoutState, hasInlineChild);
2126 } 2126 }
2127 2127
2128 // Expand the last line to accommodate Ruby and emphasis marks. 2128 // Expand the last line to accommodate Ruby and emphasis marks.
2129 int lastLineAnnotationsAdjustment = 0; 2129 int lastLineAnnotationsAdjustment = 0;
2130 if (lastRootBox()) { 2130 if (lastRootBox()) {
2131 LayoutUnit lowestAllowedPosition = max(lastRootBox()->lineBottom(), logi calHeight() + paddingAfter()); 2131 LayoutUnit lowestAllowedPosition = max(lastRootBox()->lineBottom(), logi calHeight() + paddingAfter());
2132 if (!style()->isFlippedLinesWritingMode()) 2132 if (!style()->isFlippedLinesWritingMode())
2133 lastLineAnnotationsAdjustment = lastRootBox()->computeUnderAnnotatio nAdjustment(lowestAllowedPosition); 2133 lastLineAnnotationsAdjustment = lastRootBox()->computeUnderAnnotatio nAdjustment(lowestAllowedPosition);
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
3481 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache); 3481 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache);
3482 3482
3483 setLineGridBox(lineGridBox); 3483 setLineGridBox(lineGridBox);
3484 3484
3485 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying 3485 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying
3486 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping 3486 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping
3487 // to this grid. 3487 // to this grid.
3488 } 3488 }
3489 3489
3490 } 3490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698