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

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

Issue 247583003: Revert of Separate repaint and layout requirements of StyleDifference (Step 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Local revert Created 6 years, 8 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 | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 void RenderFlexibleBox::removeChild(RenderObject* child) 206 void RenderFlexibleBox::removeChild(RenderObject* child)
207 { 207 {
208 RenderBlock::removeChild(child); 208 RenderBlock::removeChild(child);
209 m_intrinsicSizeAlongMainAxis.remove(child); 209 m_intrinsicSizeAlongMainAxis.remove(child);
210 } 210 }
211 211
212 void RenderFlexibleBox::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) 212 void RenderFlexibleBox::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
213 { 213 {
214 RenderBlock::styleDidChange(diff, oldStyle); 214 RenderBlock::styleDidChange(diff, oldStyle);
215 215
216 if (oldStyle && oldStyle->alignItems() == ItemPositionStretch && diff.needsF ullLayout()) { 216 if (oldStyle && oldStyle->alignItems() == ItemPositionStretch && diff == Sty leDifferenceLayout) {
217 // Flex items that were previously stretching need to be relayed out so we can compute new available cross axis space. 217 // Flex items that were previously stretching need to be relayed out so we can compute new available cross axis space.
218 // This is only necessary for stretching since other alignment values do n't change the size of the box. 218 // This is only necessary for stretching since other alignment values do n't change the size of the box.
219 for (RenderBox* child = firstChildBox(); child; child = child->nextSibli ngBox()) { 219 for (RenderBox* child = firstChildBox(); child; child = child->nextSibli ngBox()) {
220 ItemPosition previousAlignment = resolveAlignment(oldStyle, child->s tyle()); 220 ItemPosition previousAlignment = resolveAlignment(oldStyle, child->s tyle());
221 if (previousAlignment == ItemPositionStretch && previousAlignment != resolveAlignment(style(), child->style())) 221 if (previousAlignment == ItemPositionStretch && previousAlignment != resolveAlignment(style(), child->style()))
222 child->setChildNeedsLayout(MarkOnlyThis); 222 child->setChildNeedsLayout(MarkOnlyThis);
223 } 223 }
224 } 224 }
225 } 225 }
226 226
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after
1408 ASSERT(child); 1408 ASSERT(child);
1409 LayoutUnit lineCrossAxisExtent = lineContexts[lineNumber].crossAxisE xtent; 1409 LayoutUnit lineCrossAxisExtent = lineContexts[lineNumber].crossAxisE xtent;
1410 LayoutUnit originalOffset = lineContexts[lineNumber].crossAxisOffset - crossAxisStartEdge; 1410 LayoutUnit originalOffset = lineContexts[lineNumber].crossAxisOffset - crossAxisStartEdge;
1411 LayoutUnit newOffset = contentExtent - originalOffset - lineCrossAxi sExtent; 1411 LayoutUnit newOffset = contentExtent - originalOffset - lineCrossAxi sExtent;
1412 adjustAlignmentForChild(child, newOffset - originalOffset); 1412 adjustAlignmentForChild(child, newOffset - originalOffset);
1413 } 1413 }
1414 } 1414 }
1415 } 1415 }
1416 1416
1417 } 1417 }
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698