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

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

Issue 616583002: Revert of Blink doesn't honor percent heights on children of "align-self:stretch" flex items in a fixed-height (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/core/rendering/RenderFlexibleBox.h ('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) 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 return flexBasis.isAuto() || (flexBasis.isPercent() && hasInfiniteLineLength ); 604 return flexBasis.isAuto() || (flexBasis.isPercent() && hasInfiniteLineLength );
605 } 605 }
606 606
607 bool RenderFlexibleBox::childPreferredMainAxisContentExtentRequiresLayout(Render Box& child, bool hasInfiniteLineLength) const 607 bool RenderFlexibleBox::childPreferredMainAxisContentExtentRequiresLayout(Render Box& child, bool hasInfiniteLineLength) const
608 { 608 {
609 return preferredMainAxisExtentDependsOnLayout(flexBasisForChild(child), hasI nfiniteLineLength) && hasOrthogonalFlow(child); 609 return preferredMainAxisExtentDependsOnLayout(flexBasisForChild(child), hasI nfiniteLineLength) && hasOrthogonalFlow(child);
610 } 610 }
611 611
612 LayoutUnit RenderFlexibleBox::preferredMainAxisContentExtentForChild(RenderBox& child, bool hasInfiniteLineLength, bool relayoutChildren) 612 LayoutUnit RenderFlexibleBox::preferredMainAxisContentExtentForChild(RenderBox& child, bool hasInfiniteLineLength, bool relayoutChildren)
613 { 613 {
614 clearLogicalOverrideSize(child); 614 child.clearOverrideSize();
615 615
616 if (child.style()->hasAspectRatio() || child.isImage() || child.isVideo() || child.isCanvas()) 616 if (child.style()->hasAspectRatio() || child.isImage() || child.isVideo() || child.isCanvas())
617 UseCounter::count(document(), UseCounter::AspectRatioFlexItem); 617 UseCounter::count(document(), UseCounter::AspectRatioFlexItem);
618 618
619 Length flexBasis = flexBasisForChild(child); 619 Length flexBasis = flexBasisForChild(child);
620 if (preferredMainAxisExtentDependsOnLayout(flexBasis, hasInfiniteLineLength) ) { 620 if (preferredMainAxisExtentDependsOnLayout(flexBasis, hasInfiniteLineLength) ) {
621 LayoutUnit mainAxisExtent; 621 LayoutUnit mainAxisExtent;
622 if (hasOrthogonalFlow(child)) { 622 if (hasOrthogonalFlow(child)) {
623 if (child.needsLayout() || relayoutChildren) { 623 if (child.needsLayout() || relayoutChildren) {
624 m_intrinsicSizeAlongMainAxis.remove(&child); 624 m_intrinsicSizeAlongMainAxis.remove(&child);
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 } 986 }
987 987
988 void RenderFlexibleBox::setLogicalOverrideSize(RenderBox& child, LayoutUnit chil dPreferredSize) 988 void RenderFlexibleBox::setLogicalOverrideSize(RenderBox& child, LayoutUnit chil dPreferredSize)
989 { 989 {
990 if (hasOrthogonalFlow(child)) 990 if (hasOrthogonalFlow(child))
991 child.setOverrideLogicalContentHeight(childPreferredSize - child.borderA ndPaddingLogicalHeight()); 991 child.setOverrideLogicalContentHeight(childPreferredSize - child.borderA ndPaddingLogicalHeight());
992 else 992 else
993 child.setOverrideLogicalContentWidth(childPreferredSize - child.borderAn dPaddingLogicalWidth()); 993 child.setOverrideLogicalContentWidth(childPreferredSize - child.borderAn dPaddingLogicalWidth());
994 } 994 }
995 995
996 void RenderFlexibleBox::clearLogicalOverrideSize(RenderBox& child)
997 {
998 if (hasOrthogonalFlow(child))
999 child.clearOverrideLogicalContentHeight();
1000 else
1001 child.clearOverrideLogicalContentWidth();
1002 }
1003
1004 void RenderFlexibleBox::prepareChildForPositionedLayout(RenderBox& child, Layout Unit mainAxisOffset, LayoutUnit crossAxisOffset, PositionedLayoutMode layoutMode ) 996 void RenderFlexibleBox::prepareChildForPositionedLayout(RenderBox& child, Layout Unit mainAxisOffset, LayoutUnit crossAxisOffset, PositionedLayoutMode layoutMode )
1005 { 997 {
1006 ASSERT(child.isOutOfFlowPositioned()); 998 ASSERT(child.isOutOfFlowPositioned());
1007 child.containingBlock()->insertPositionedObject(&child); 999 child.containingBlock()->insertPositionedObject(&child);
1008 RenderLayer* childLayer = child.layer(); 1000 RenderLayer* childLayer = child.layer();
1009 LayoutUnit inlinePosition = isColumnFlow() ? crossAxisOffset : mainAxisOffse t; 1001 LayoutUnit inlinePosition = isColumnFlow() ? crossAxisOffset : mainAxisOffse t;
1010 if (layoutMode == FlipForRowReverse && style()->flexDirection() == FlowRowRe verse) 1002 if (layoutMode == FlipForRowReverse && style()->flexDirection() == FlowRowRe verse)
1011 inlinePosition = mainAxisExtent() - mainAxisOffset; 1003 inlinePosition = mainAxisExtent() - mainAxisOffset;
1012 childLayer->setStaticInlinePosition(inlinePosition); 1004 childLayer->setStaticInlinePosition(inlinePosition);
1013 1005
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 1346
1355 void RenderFlexibleBox::applyStretchAlignmentToChild(RenderBox& child, LayoutUni t lineCrossAxisExtent) 1347 void RenderFlexibleBox::applyStretchAlignmentToChild(RenderBox& child, LayoutUni t lineCrossAxisExtent)
1356 { 1348 {
1357 if (!isColumnFlow() && child.style()->logicalHeight().isAuto()) { 1349 if (!isColumnFlow() && child.style()->logicalHeight().isAuto()) {
1358 // FIXME: If the child has orthogonal flow, then it already has an overr ide height set, so use it. 1350 // FIXME: If the child has orthogonal flow, then it already has an overr ide height set, so use it.
1359 if (!hasOrthogonalFlow(child)) { 1351 if (!hasOrthogonalFlow(child)) {
1360 LayoutUnit heightBeforeStretching = needToStretchChildLogicalHeight( child) ? constrainedChildIntrinsicContentLogicalHeight(child) : child.logicalHei ght(); 1352 LayoutUnit heightBeforeStretching = needToStretchChildLogicalHeight( child) ? constrainedChildIntrinsicContentLogicalHeight(child) : child.logicalHei ght();
1361 LayoutUnit stretchedLogicalHeight = heightBeforeStretching + availab leAlignmentSpaceForChildBeforeStretching(lineCrossAxisExtent, child); 1353 LayoutUnit stretchedLogicalHeight = heightBeforeStretching + availab leAlignmentSpaceForChildBeforeStretching(lineCrossAxisExtent, child);
1362 ASSERT(!child.needsLayout()); 1354 ASSERT(!child.needsLayout());
1363 LayoutUnit desiredLogicalHeight = child.constrainLogicalHeightByMinM ax(stretchedLogicalHeight, heightBeforeStretching - child.borderAndPaddingLogica lHeight()); 1355 LayoutUnit desiredLogicalHeight = child.constrainLogicalHeightByMinM ax(stretchedLogicalHeight, heightBeforeStretching - child.borderAndPaddingLogica lHeight());
1364 LayoutUnit desiredLogicalContentHeight = desiredLogicalHeight - chil d.borderAndPaddingLogicalHeight();
1365 1356
1366 // FIXME: Can avoid laying out here in some cases. See https://webki t.org/b/87905. 1357 // FIXME: Can avoid laying out here in some cases. See https://webki t.org/b/87905.
1367 if (desiredLogicalHeight != child.logicalHeight() || !child.hasOverr ideHeight() || desiredLogicalContentHeight != child.overrideLogicalContentHeight ()) { 1358 if (desiredLogicalHeight != child.logicalHeight()) {
1368 child.setOverrideLogicalContentHeight(desiredLogicalContentHeigh t); 1359 child.setOverrideLogicalContentHeight(desiredLogicalHeight - chi ld.borderAndPaddingLogicalHeight());
1369 child.setLogicalHeight(0); 1360 child.setLogicalHeight(0);
1370 child.forceChildLayout(); 1361 child.forceChildLayout();
1371 } 1362 }
1372 } 1363 }
1373 } else if (isColumnFlow() && child.style()->logicalWidth().isAuto()) { 1364 } else if (isColumnFlow() && child.style()->logicalWidth().isAuto()) {
1374 // FIXME: If the child doesn't have orthogonal flow, then it already has an override width set, so use it. 1365 // FIXME: If the child doesn't have orthogonal flow, then it already has an override width set, so use it.
1375 if (hasOrthogonalFlow(child)) { 1366 if (hasOrthogonalFlow(child)) {
1376 LayoutUnit childWidth = std::max<LayoutUnit>(0, lineCrossAxisExtent - crossAxisMarginExtentForChild(child)); 1367 LayoutUnit childWidth = std::max<LayoutUnit>(0, lineCrossAxisExtent - crossAxisMarginExtentForChild(child));
1377 childWidth = child.constrainLogicalWidthByMinMax(childWidth, childWi dth, this); 1368 childWidth = child.constrainLogicalWidthByMinMax(childWidth, childWi dth, this);
1378 1369
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 ASSERT(child); 1401 ASSERT(child);
1411 LayoutUnit lineCrossAxisExtent = lineContexts[lineNumber].crossAxisE xtent; 1402 LayoutUnit lineCrossAxisExtent = lineContexts[lineNumber].crossAxisE xtent;
1412 LayoutUnit originalOffset = lineContexts[lineNumber].crossAxisOffset - crossAxisStartEdge; 1403 LayoutUnit originalOffset = lineContexts[lineNumber].crossAxisOffset - crossAxisStartEdge;
1413 LayoutUnit newOffset = contentExtent - originalOffset - lineCrossAxi sExtent; 1404 LayoutUnit newOffset = contentExtent - originalOffset - lineCrossAxi sExtent;
1414 adjustAlignmentForChild(*child, newOffset - originalOffset); 1405 adjustAlignmentForChild(*child, newOffset - originalOffset);
1415 } 1406 }
1416 } 1407 }
1417 } 1408 }
1418 1409
1419 } 1410 }
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderFlexibleBox.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698