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

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: Put behind PartialLayout runtime flag Created 7 years, 3 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 2146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2157 } else if (o->isText() || (o->isRenderInline() && !walker.atEndOfInl ine())) { 2157 } else if (o->isText() || (o->isRenderInline() && !walker.atEndOfInl ine())) {
2158 if (!o->isText()) 2158 if (!o->isText())
2159 toRenderInline(o)->updateAlwaysCreateLineBoxes(layoutState.i sFullLayout()); 2159 toRenderInline(o)->updateAlwaysCreateLineBoxes(layoutState.i sFullLayout());
2160 if (layoutState.isFullLayout() || o->selfNeedsLayout()) 2160 if (layoutState.isFullLayout() || o->selfNeedsLayout())
2161 dirtyLineBoxesForRenderer(o, layoutState.isFullLayout()); 2161 dirtyLineBoxesForRenderer(o, layoutState.isFullLayout());
2162 o->clearNeedsLayout(); 2162 o->clearNeedsLayout();
2163 } 2163 }
2164 } 2164 }
2165 2165
2166 for (size_t i = 0; i < replacedChildren.size(); i++) 2166 for (size_t i = 0; i < replacedChildren.size(); i++)
2167 replacedChildren[i]->layoutIfNeeded(); 2167 replacedChildren[i]->layoutIfNeeded();
2168 2168
2169 layoutRunsAndFloats(layoutState, hasInlineChild); 2169 layoutRunsAndFloats(layoutState, hasInlineChild);
2170 } 2170 }
2171 2171
2172 // Expand the last line to accommodate Ruby and emphasis marks. 2172 // Expand the last line to accommodate Ruby and emphasis marks.
2173 int lastLineAnnotationsAdjustment = 0; 2173 int lastLineAnnotationsAdjustment = 0;
2174 if (lastRootBox()) { 2174 if (lastRootBox()) {
2175 LayoutUnit lowestAllowedPosition = max(lastRootBox()->lineBottom(), logi calHeight() + paddingAfter()); 2175 LayoutUnit lowestAllowedPosition = max(lastRootBox()->lineBottom(), logi calHeight() + paddingAfter());
2176 if (!style()->isFlippedLinesWritingMode()) 2176 if (!style()->isFlippedLinesWritingMode())
2177 lastLineAnnotationsAdjustment = lastRootBox()->computeUnderAnnotatio nAdjustment(lowestAllowedPosition); 2177 lastLineAnnotationsAdjustment = lastRootBox()->computeUnderAnnotatio nAdjustment(lowestAllowedPosition);
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
3525 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache); 3525 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache);
3526 3526
3527 setLineGridBox(lineGridBox); 3527 setLineGridBox(lineGridBox);
3528 3528
3529 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying 3529 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying
3530 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping 3530 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping
3531 // to this grid. 3531 // to this grid.
3532 } 3532 }
3533 3533
3534 } 3534 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698