Fix issue where padding for box sizing is resolved against wrong reference length (#1715)

Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1715

X-link: https://github.com/facebook/react-native/pull/46799

Content box impl had a bug where we resolved padding % against the same reference length as the dimensions. Padding should always be against containing block's width. This is also true for width, but not for height, which should be against containing block's height.

This just pipes the width into our box sizing functions.

Changelog: [Internal]

Reviewed By: NickGerleman

Differential Revision: D63787577

fbshipit-source-id: e512338770f25b66506cabab5a7cde8f04397ea0
This commit is contained in:
Joe Vilches
2024-10-04 17:07:05 -07:00
committed by Facebook GitHub Bot
parent 990ec920ad
commit e69fcb26bb
12 changed files with 171 additions and 103 deletions

View File

@@ -46,16 +46,16 @@
style="width: 100px; height: 100px; padding: 5px; box-sizing: content-box"> style="width: 100px; height: 100px; padding: 5px; box-sizing: content-box">
</div> </div>
<div id="box_sizing_content_box_padding_only_percent" style="width: 100px; height: 100px;"> <div id="box_sizing_content_box_padding_only_percent" style="width: 100px; height: 150px;">
<div style="width: 50%; height: 75; padding: 10%; box-sizing: content-box"> <div style="width: 50px; height: 75px; padding: 10%; box-sizing: content-box">
</div> </div>
</div> </div>
<div id="box_sizing_border_box_padding_only" style="width: 100px; height: 100px; padding: 5px; box-sizing: border-box"> <div id="box_sizing_border_box_padding_only" style="width: 100px; height: 100px; padding: 5px; box-sizing: border-box">
</div> </div>
<div id="box_sizing_border_box_padding_only_percent" style="width: 100px; height: 100px;"> <div id="box_sizing_border_box_padding_only_percent" style="width: 100px; height: 150px;">
<div style="width: 50%; height: 75; padding: 10%; box-sizing: border-box"> <div style="width: 50px; height: 75px; padding: 10%; box-sizing: border-box">
</div> </div>
</div> </div>
@@ -197,7 +197,8 @@
</div> </div>
</div> </div>
<div data-disabled="true" id="box_sizing_content_box_flex_basis_row" style="width: 100px; height: 100px; flex-direction: row;"> <div data-disabled="true" id="box_sizing_content_box_flex_basis_row"
style="width: 100px; height: 100px; flex-direction: row;">
<div style="flex-basis: 50px; height: 25px; padding: 5px; border-width: 10px; box-sizing: content-box"> <div style="flex-basis: 50px; height: 25px; padding: 5px; border-width: 10px; box-sizing: content-box">
</div> </div>
</div> </div>
@@ -207,7 +208,8 @@
</div> </div>
</div> </div>
<div data-disabled="true" id="box_sizing_content_box_flex_basis_column" style="width: 100px; height: 100px; flex-direction: column;"> <div data-disabled="true" id="box_sizing_content_box_flex_basis_column"
style="width: 100px; height: 100px; flex-direction: column;">
<div style="flex-basis: 50px; height: 25px; padding: 5px; border-width: 10px; box-sizing: content-box"> <div style="flex-basis: 50px; height: 25px; padding: 5px; border-width: 10px; box-sizing: content-box">
</div> </div>
</div> </div>

View File

@@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the * This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
* *
* @generated SignedSource<<80fa9cf05afc330a721a756dfaf0d1a3>> * @generated SignedSource<<7f42121bbd9772cdbc079aac71040dcc>>
* generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html * generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html
*/ */
@@ -452,14 +452,15 @@ public class YGBoxSizingTest {
final YogaNode root = createNode(config); final YogaNode root = createNode(config);
root.setPositionType(YogaPositionType.ABSOLUTE); root.setPositionType(YogaPositionType.ABSOLUTE);
root.setWidth(100f); root.setWidth(100f);
root.setHeight(100f); root.setHeight(150f);
final YogaNode root_child0 = createNode(config); final YogaNode root_child0 = createNode(config);
root_child0.setPaddingPercent(YogaEdge.LEFT, 10); root_child0.setPaddingPercent(YogaEdge.LEFT, 10);
root_child0.setPaddingPercent(YogaEdge.TOP, 10); root_child0.setPaddingPercent(YogaEdge.TOP, 10);
root_child0.setPaddingPercent(YogaEdge.RIGHT, 10); root_child0.setPaddingPercent(YogaEdge.RIGHT, 10);
root_child0.setPaddingPercent(YogaEdge.BOTTOM, 10); root_child0.setPaddingPercent(YogaEdge.BOTTOM, 10);
root_child0.setWidthPercent(50f); root_child0.setWidth(50f);
root_child0.setHeight(75f);
root_child0.setBoxSizing(YogaBoxSizing.CONTENT_BOX); root_child0.setBoxSizing(YogaBoxSizing.CONTENT_BOX);
root.addChildAt(root_child0, 0); root.addChildAt(root_child0, 0);
root.setDirection(YogaDirection.LTR); root.setDirection(YogaDirection.LTR);
@@ -468,12 +469,12 @@ public class YGBoxSizingTest {
assertEquals(0f, root.getLayoutX(), 0.0f); assertEquals(0f, root.getLayoutX(), 0.0f);
assertEquals(0f, root.getLayoutY(), 0.0f); assertEquals(0f, root.getLayoutY(), 0.0f);
assertEquals(100f, root.getLayoutWidth(), 0.0f); assertEquals(100f, root.getLayoutWidth(), 0.0f);
assertEquals(100f, root.getLayoutHeight(), 0.0f); assertEquals(150f, root.getLayoutHeight(), 0.0f);
assertEquals(0f, root_child0.getLayoutX(), 0.0f); assertEquals(0f, root_child0.getLayoutX(), 0.0f);
assertEquals(0f, root_child0.getLayoutY(), 0.0f); assertEquals(0f, root_child0.getLayoutY(), 0.0f);
assertEquals(70f, root_child0.getLayoutWidth(), 0.0f); assertEquals(70f, root_child0.getLayoutWidth(), 0.0f);
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f); assertEquals(95f, root_child0.getLayoutHeight(), 0.0f);
root.setDirection(YogaDirection.RTL); root.setDirection(YogaDirection.RTL);
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED); root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
@@ -481,12 +482,12 @@ public class YGBoxSizingTest {
assertEquals(0f, root.getLayoutX(), 0.0f); assertEquals(0f, root.getLayoutX(), 0.0f);
assertEquals(0f, root.getLayoutY(), 0.0f); assertEquals(0f, root.getLayoutY(), 0.0f);
assertEquals(100f, root.getLayoutWidth(), 0.0f); assertEquals(100f, root.getLayoutWidth(), 0.0f);
assertEquals(100f, root.getLayoutHeight(), 0.0f); assertEquals(150f, root.getLayoutHeight(), 0.0f);
assertEquals(30f, root_child0.getLayoutX(), 0.0f); assertEquals(30f, root_child0.getLayoutX(), 0.0f);
assertEquals(0f, root_child0.getLayoutY(), 0.0f); assertEquals(0f, root_child0.getLayoutY(), 0.0f);
assertEquals(70f, root_child0.getLayoutWidth(), 0.0f); assertEquals(70f, root_child0.getLayoutWidth(), 0.0f);
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f); assertEquals(95f, root_child0.getLayoutHeight(), 0.0f);
} }
@Test @Test
@@ -525,14 +526,15 @@ public class YGBoxSizingTest {
final YogaNode root = createNode(config); final YogaNode root = createNode(config);
root.setPositionType(YogaPositionType.ABSOLUTE); root.setPositionType(YogaPositionType.ABSOLUTE);
root.setWidth(100f); root.setWidth(100f);
root.setHeight(100f); root.setHeight(150f);
final YogaNode root_child0 = createNode(config); final YogaNode root_child0 = createNode(config);
root_child0.setPaddingPercent(YogaEdge.LEFT, 10); root_child0.setPaddingPercent(YogaEdge.LEFT, 10);
root_child0.setPaddingPercent(YogaEdge.TOP, 10); root_child0.setPaddingPercent(YogaEdge.TOP, 10);
root_child0.setPaddingPercent(YogaEdge.RIGHT, 10); root_child0.setPaddingPercent(YogaEdge.RIGHT, 10);
root_child0.setPaddingPercent(YogaEdge.BOTTOM, 10); root_child0.setPaddingPercent(YogaEdge.BOTTOM, 10);
root_child0.setWidthPercent(50f); root_child0.setWidth(50f);
root_child0.setHeight(75f);
root.addChildAt(root_child0, 0); root.addChildAt(root_child0, 0);
root.setDirection(YogaDirection.LTR); root.setDirection(YogaDirection.LTR);
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED); root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
@@ -540,12 +542,12 @@ public class YGBoxSizingTest {
assertEquals(0f, root.getLayoutX(), 0.0f); assertEquals(0f, root.getLayoutX(), 0.0f);
assertEquals(0f, root.getLayoutY(), 0.0f); assertEquals(0f, root.getLayoutY(), 0.0f);
assertEquals(100f, root.getLayoutWidth(), 0.0f); assertEquals(100f, root.getLayoutWidth(), 0.0f);
assertEquals(100f, root.getLayoutHeight(), 0.0f); assertEquals(150f, root.getLayoutHeight(), 0.0f);
assertEquals(0f, root_child0.getLayoutX(), 0.0f); assertEquals(0f, root_child0.getLayoutX(), 0.0f);
assertEquals(0f, root_child0.getLayoutY(), 0.0f); assertEquals(0f, root_child0.getLayoutY(), 0.0f);
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f); assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f); assertEquals(75f, root_child0.getLayoutHeight(), 0.0f);
root.setDirection(YogaDirection.RTL); root.setDirection(YogaDirection.RTL);
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED); root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
@@ -553,12 +555,12 @@ public class YGBoxSizingTest {
assertEquals(0f, root.getLayoutX(), 0.0f); assertEquals(0f, root.getLayoutX(), 0.0f);
assertEquals(0f, root.getLayoutY(), 0.0f); assertEquals(0f, root.getLayoutY(), 0.0f);
assertEquals(100f, root.getLayoutWidth(), 0.0f); assertEquals(100f, root.getLayoutWidth(), 0.0f);
assertEquals(100f, root.getLayoutHeight(), 0.0f); assertEquals(150f, root.getLayoutHeight(), 0.0f);
assertEquals(50f, root_child0.getLayoutX(), 0.0f); assertEquals(50f, root_child0.getLayoutX(), 0.0f);
assertEquals(0f, root_child0.getLayoutY(), 0.0f); assertEquals(0f, root_child0.getLayoutY(), 0.0f);
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f); assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f); assertEquals(75f, root_child0.getLayoutHeight(), 0.0f);
} }
@Test @Test

View File

@@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the * This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
* *
* @generated SignedSource<<48d3d46dec54df38f853a6fa17e6f0c6>> * @generated SignedSource<<a841bb29f095097bae9635f62b9fb16d>>
* generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html * generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html
*/ */
@@ -499,14 +499,15 @@ test('box_sizing_content_box_padding_only_percent', () => {
root = Yoga.Node.create(config); root = Yoga.Node.create(config);
root.setPositionType(PositionType.Absolute); root.setPositionType(PositionType.Absolute);
root.setWidth(100); root.setWidth(100);
root.setHeight(100); root.setHeight(150);
const root_child0 = Yoga.Node.create(config); const root_child0 = Yoga.Node.create(config);
root_child0.setPadding(Edge.Left, "10%"); root_child0.setPadding(Edge.Left, "10%");
root_child0.setPadding(Edge.Top, "10%"); root_child0.setPadding(Edge.Top, "10%");
root_child0.setPadding(Edge.Right, "10%"); root_child0.setPadding(Edge.Right, "10%");
root_child0.setPadding(Edge.Bottom, "10%"); root_child0.setPadding(Edge.Bottom, "10%");
root_child0.setWidth("50%"); root_child0.setWidth(50);
root_child0.setHeight(75);
root_child0.setBoxSizing(BoxSizing.ContentBox); root_child0.setBoxSizing(BoxSizing.ContentBox);
root.insertChild(root_child0, 0); root.insertChild(root_child0, 0);
root.calculateLayout(undefined, undefined, Direction.LTR); root.calculateLayout(undefined, undefined, Direction.LTR);
@@ -514,24 +515,24 @@ test('box_sizing_content_box_padding_only_percent', () => {
expect(root.getComputedLeft()).toBe(0); expect(root.getComputedLeft()).toBe(0);
expect(root.getComputedTop()).toBe(0); expect(root.getComputedTop()).toBe(0);
expect(root.getComputedWidth()).toBe(100); expect(root.getComputedWidth()).toBe(100);
expect(root.getComputedHeight()).toBe(100); expect(root.getComputedHeight()).toBe(150);
expect(root_child0.getComputedLeft()).toBe(0); expect(root_child0.getComputedLeft()).toBe(0);
expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedTop()).toBe(0);
expect(root_child0.getComputedWidth()).toBe(70); expect(root_child0.getComputedWidth()).toBe(70);
expect(root_child0.getComputedHeight()).toBe(20); expect(root_child0.getComputedHeight()).toBe(95);
root.calculateLayout(undefined, undefined, Direction.RTL); root.calculateLayout(undefined, undefined, Direction.RTL);
expect(root.getComputedLeft()).toBe(0); expect(root.getComputedLeft()).toBe(0);
expect(root.getComputedTop()).toBe(0); expect(root.getComputedTop()).toBe(0);
expect(root.getComputedWidth()).toBe(100); expect(root.getComputedWidth()).toBe(100);
expect(root.getComputedHeight()).toBe(100); expect(root.getComputedHeight()).toBe(150);
expect(root_child0.getComputedLeft()).toBe(30); expect(root_child0.getComputedLeft()).toBe(30);
expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedTop()).toBe(0);
expect(root_child0.getComputedWidth()).toBe(70); expect(root_child0.getComputedWidth()).toBe(70);
expect(root_child0.getComputedHeight()).toBe(20); expect(root_child0.getComputedHeight()).toBe(95);
} finally { } finally {
if (typeof root !== 'undefined') { if (typeof root !== 'undefined') {
root.freeRecursive(); root.freeRecursive();
@@ -582,38 +583,39 @@ test('box_sizing_border_box_padding_only_percent', () => {
root = Yoga.Node.create(config); root = Yoga.Node.create(config);
root.setPositionType(PositionType.Absolute); root.setPositionType(PositionType.Absolute);
root.setWidth(100); root.setWidth(100);
root.setHeight(100); root.setHeight(150);
const root_child0 = Yoga.Node.create(config); const root_child0 = Yoga.Node.create(config);
root_child0.setPadding(Edge.Left, "10%"); root_child0.setPadding(Edge.Left, "10%");
root_child0.setPadding(Edge.Top, "10%"); root_child0.setPadding(Edge.Top, "10%");
root_child0.setPadding(Edge.Right, "10%"); root_child0.setPadding(Edge.Right, "10%");
root_child0.setPadding(Edge.Bottom, "10%"); root_child0.setPadding(Edge.Bottom, "10%");
root_child0.setWidth("50%"); root_child0.setWidth(50);
root_child0.setHeight(75);
root.insertChild(root_child0, 0); root.insertChild(root_child0, 0);
root.calculateLayout(undefined, undefined, Direction.LTR); root.calculateLayout(undefined, undefined, Direction.LTR);
expect(root.getComputedLeft()).toBe(0); expect(root.getComputedLeft()).toBe(0);
expect(root.getComputedTop()).toBe(0); expect(root.getComputedTop()).toBe(0);
expect(root.getComputedWidth()).toBe(100); expect(root.getComputedWidth()).toBe(100);
expect(root.getComputedHeight()).toBe(100); expect(root.getComputedHeight()).toBe(150);
expect(root_child0.getComputedLeft()).toBe(0); expect(root_child0.getComputedLeft()).toBe(0);
expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedTop()).toBe(0);
expect(root_child0.getComputedWidth()).toBe(50); expect(root_child0.getComputedWidth()).toBe(50);
expect(root_child0.getComputedHeight()).toBe(20); expect(root_child0.getComputedHeight()).toBe(75);
root.calculateLayout(undefined, undefined, Direction.RTL); root.calculateLayout(undefined, undefined, Direction.RTL);
expect(root.getComputedLeft()).toBe(0); expect(root.getComputedLeft()).toBe(0);
expect(root.getComputedTop()).toBe(0); expect(root.getComputedTop()).toBe(0);
expect(root.getComputedWidth()).toBe(100); expect(root.getComputedWidth()).toBe(100);
expect(root.getComputedHeight()).toBe(100); expect(root.getComputedHeight()).toBe(150);
expect(root_child0.getComputedLeft()).toBe(50); expect(root_child0.getComputedLeft()).toBe(50);
expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedTop()).toBe(0);
expect(root_child0.getComputedWidth()).toBe(50); expect(root_child0.getComputedWidth()).toBe(50);
expect(root_child0.getComputedHeight()).toBe(20); expect(root_child0.getComputedHeight()).toBe(75);
} finally { } finally {
if (typeof root !== 'undefined') { if (typeof root !== 'undefined') {
root.freeRecursive(); root.freeRecursive();

View File

@@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
* *
* clang-format off * clang-format off
* @generated SignedSource<<36f0f519320608e2c5c6eb6666be7efc>> * @generated SignedSource<<24bf988fec7e7f72a8f46ba74df63399>>
* generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html * generated by gentest/gentest-driver.ts from gentest/fixtures/YGBoxSizingTest.html
*/ */
@@ -446,14 +446,15 @@ TEST(YogaTest, box_sizing_content_box_padding_only_percent) {
YGNodeRef root = YGNodeNewWithConfig(config); YGNodeRef root = YGNodeNewWithConfig(config);
YGNodeStyleSetPositionType(root, YGPositionTypeAbsolute); YGNodeStyleSetPositionType(root, YGPositionTypeAbsolute);
YGNodeStyleSetWidth(root, 100); YGNodeStyleSetWidth(root, 100);
YGNodeStyleSetHeight(root, 100); YGNodeStyleSetHeight(root, 150);
YGNodeRef root_child0 = YGNodeNewWithConfig(config); YGNodeRef root_child0 = YGNodeNewWithConfig(config);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeLeft, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeLeft, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeTop, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeTop, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeRight, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeRight, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeBottom, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeBottom, 10);
YGNodeStyleSetWidthPercent(root_child0, 50); YGNodeStyleSetWidth(root_child0, 50);
YGNodeStyleSetHeight(root_child0, 75);
YGNodeStyleSetBoxSizing(root_child0, YGBoxSizingContentBox); YGNodeStyleSetBoxSizing(root_child0, YGBoxSizingContentBox);
YGNodeInsertChild(root, root_child0, 0); YGNodeInsertChild(root, root_child0, 0);
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR); YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR);
@@ -461,24 +462,24 @@ TEST(YogaTest, box_sizing_content_box_padding_only_percent) {
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root)); ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root)); ASSERT_FLOAT_EQ(150, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(70, YGNodeLayoutGetWidth(root_child0)); ASSERT_FLOAT_EQ(70, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(20, YGNodeLayoutGetHeight(root_child0)); ASSERT_FLOAT_EQ(95, YGNodeLayoutGetHeight(root_child0));
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL); YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root)); ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root)); ASSERT_FLOAT_EQ(150, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(30, YGNodeLayoutGetLeft(root_child0)); ASSERT_FLOAT_EQ(30, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(70, YGNodeLayoutGetWidth(root_child0)); ASSERT_FLOAT_EQ(70, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(20, YGNodeLayoutGetHeight(root_child0)); ASSERT_FLOAT_EQ(95, YGNodeLayoutGetHeight(root_child0));
YGNodeFreeRecursive(root); YGNodeFreeRecursive(root);
@@ -521,38 +522,39 @@ TEST(YogaTest, box_sizing_border_box_padding_only_percent) {
YGNodeRef root = YGNodeNewWithConfig(config); YGNodeRef root = YGNodeNewWithConfig(config);
YGNodeStyleSetPositionType(root, YGPositionTypeAbsolute); YGNodeStyleSetPositionType(root, YGPositionTypeAbsolute);
YGNodeStyleSetWidth(root, 100); YGNodeStyleSetWidth(root, 100);
YGNodeStyleSetHeight(root, 100); YGNodeStyleSetHeight(root, 150);
YGNodeRef root_child0 = YGNodeNewWithConfig(config); YGNodeRef root_child0 = YGNodeNewWithConfig(config);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeLeft, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeLeft, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeTop, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeTop, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeRight, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeRight, 10);
YGNodeStyleSetPaddingPercent(root_child0, YGEdgeBottom, 10); YGNodeStyleSetPaddingPercent(root_child0, YGEdgeBottom, 10);
YGNodeStyleSetWidthPercent(root_child0, 50); YGNodeStyleSetWidth(root_child0, 50);
YGNodeStyleSetHeight(root_child0, 75);
YGNodeInsertChild(root, root_child0, 0); YGNodeInsertChild(root, root_child0, 0);
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR); YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root)); ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root)); ASSERT_FLOAT_EQ(150, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(50, YGNodeLayoutGetWidth(root_child0)); ASSERT_FLOAT_EQ(50, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(20, YGNodeLayoutGetHeight(root_child0)); ASSERT_FLOAT_EQ(75, YGNodeLayoutGetHeight(root_child0));
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL); YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root)); ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root)); ASSERT_FLOAT_EQ(150, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(50, YGNodeLayoutGetLeft(root_child0)); ASSERT_FLOAT_EQ(50, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0)); ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(50, YGNodeLayoutGetWidth(root_child0)); ASSERT_FLOAT_EQ(50, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(20, YGNodeLayoutGetHeight(root_child0)); ASSERT_FLOAT_EQ(75, YGNodeLayoutGetHeight(root_child0));
YGNodeFreeRecursive(root); YGNodeFreeRecursive(root);

View File

@@ -326,7 +326,10 @@ void layoutAbsoluteChild(
if (child->hasDefiniteLength(Dimension::Width, containingBlockWidth)) { if (child->hasDefiniteLength(Dimension::Width, containingBlockWidth)) {
childWidth = child childWidth = child
->getResolvedDimension( ->getResolvedDimension(
direction, Dimension::Width, containingBlockWidth) direction,
Dimension::Width,
containingBlockWidth,
containingBlockWidth)
.unwrap() + .unwrap() +
marginRow; marginRow;
} else { } else {
@@ -362,7 +365,10 @@ void layoutAbsoluteChild(
if (child->hasDefiniteLength(Dimension::Height, containingBlockHeight)) { if (child->hasDefiniteLength(Dimension::Height, containingBlockHeight)) {
childHeight = child childHeight = child
->getResolvedDimension( ->getResolvedDimension(
direction, Dimension::Height, containingBlockHeight) direction,
Dimension::Height,
containingBlockHeight,
containingBlockWidth)
.unwrap() + .unwrap() +
marginColumn; marginColumn;
} else { } else {

View File

@@ -32,20 +32,21 @@ inline FloatOptional boundAxisWithinMinAndMax(
const Direction direction, const Direction direction,
const FlexDirection axis, const FlexDirection axis,
const FloatOptional value, const FloatOptional value,
const float axisSize) { const float axisSize,
const float widthSize) {
FloatOptional min; FloatOptional min;
FloatOptional max; FloatOptional max;
if (isColumn(axis)) { if (isColumn(axis)) {
min = node->style().resolvedMinDimension( min = node->style().resolvedMinDimension(
direction, Dimension::Height, axisSize); direction, Dimension::Height, axisSize, widthSize);
max = node->style().resolvedMaxDimension( max = node->style().resolvedMaxDimension(
direction, Dimension::Height, axisSize); direction, Dimension::Height, axisSize, widthSize);
} else if (isRow(axis)) { } else if (isRow(axis)) {
min = node->style().resolvedMinDimension( min = node->style().resolvedMinDimension(
direction, Dimension::Width, axisSize); direction, Dimension::Width, axisSize, widthSize);
max = node->style().resolvedMaxDimension( max = node->style().resolvedMaxDimension(
direction, Dimension::Width, axisSize); direction, Dimension::Width, axisSize, widthSize);
} }
if (max >= FloatOptional{0} && value > max) { if (max >= FloatOptional{0} && value > max) {
@@ -70,7 +71,7 @@ inline float boundAxis(
const float widthSize) { const float widthSize) {
return yoga::maxOrDefined( return yoga::maxOrDefined(
boundAxisWithinMinAndMax( boundAxisWithinMinAndMax(
node, direction, axis, FloatOptional{value}, axisSize) node, direction, axis, FloatOptional{value}, axisSize, widthSize)
.unwrap(), .unwrap(),
paddingAndBorderForAxis(node, axis, direction, widthSize)); paddingAndBorderForAxis(node, axis, direction, widthSize));
} }

View File

@@ -44,8 +44,9 @@ static void constrainMaxSizeForMode(
float ownerWidth, float ownerWidth,
/*in_out*/ SizingMode* mode, /*in_out*/ SizingMode* mode,
/*in_out*/ float* size) { /*in_out*/ float* size) {
const FloatOptional maxSize = node->style().resolvedMaxDimension( const FloatOptional maxSize =
direction, dimension(axis), ownerAxisSize) + node->style().resolvedMaxDimension(
direction, dimension(axis), ownerAxisSize, ownerWidth) +
FloatOptional(node->style().computeMarginForAxis(axis, ownerWidth)); FloatOptional(node->style().computeMarginForAxis(axis, ownerWidth));
switch (*mode) { switch (*mode) {
case SizingMode::StretchFit: case SizingMode::StretchFit:
@@ -87,8 +88,8 @@ static void computeFlexBasisForChild(
SizingMode childWidthSizingMode; SizingMode childWidthSizingMode;
SizingMode childHeightSizingMode; SizingMode childHeightSizingMode;
const FloatOptional resolvedFlexBasis = const FloatOptional resolvedFlexBasis = child->resolveFlexBasis(
child->resolveFlexBasis(direction, mainAxis, mainAxisOwnerSize); direction, mainAxis, mainAxisOwnerSize, ownerWidth);
const bool isRowStyleDimDefined = const bool isRowStyleDimDefined =
child->hasDefiniteLength(Dimension::Width, ownerWidth); child->hasDefiniteLength(Dimension::Width, ownerWidth);
const bool isColumnStyleDimDefined = const bool isColumnStyleDimDefined =
@@ -111,7 +112,8 @@ static void computeFlexBasisForChild(
child, FlexDirection::Row, direction, ownerWidth)); child, FlexDirection::Row, direction, ownerWidth));
child->setLayoutComputedFlexBasis(yoga::maxOrDefined( child->setLayoutComputedFlexBasis(yoga::maxOrDefined(
child->getResolvedDimension(direction, Dimension::Width, ownerWidth), child->getResolvedDimension(
direction, Dimension::Width, ownerWidth, ownerWidth),
paddingAndBorder)); paddingAndBorder));
} else if (!isMainAxisRow && isColumnStyleDimDefined) { } else if (!isMainAxisRow && isColumnStyleDimDefined) {
// The height is definite, so use that as the flex basis. // The height is definite, so use that as the flex basis.
@@ -119,7 +121,8 @@ static void computeFlexBasisForChild(
FloatOptional(paddingAndBorderForAxis( FloatOptional(paddingAndBorderForAxis(
child, FlexDirection::Column, direction, ownerWidth)); child, FlexDirection::Column, direction, ownerWidth));
child->setLayoutComputedFlexBasis(yoga::maxOrDefined( child->setLayoutComputedFlexBasis(yoga::maxOrDefined(
child->getResolvedDimension(direction, Dimension::Height, ownerHeight), child->getResolvedDimension(
direction, Dimension::Height, ownerHeight, ownerWidth),
paddingAndBorder)); paddingAndBorder));
} else { } else {
// Compute the flex basis and hypothetical main size (i.e. the clamped flex // Compute the flex basis and hypothetical main size (i.e. the clamped flex
@@ -133,15 +136,18 @@ static void computeFlexBasisForChild(
child->style().computeMarginForAxis(FlexDirection::Column, ownerWidth); child->style().computeMarginForAxis(FlexDirection::Column, ownerWidth);
if (isRowStyleDimDefined) { if (isRowStyleDimDefined) {
childWidth = childWidth = child
child->getResolvedDimension(direction, Dimension::Width, ownerWidth) ->getResolvedDimension(
.unwrap() + direction, Dimension::Width, ownerWidth, ownerWidth)
.unwrap() +
marginRow; marginRow;
childWidthSizingMode = SizingMode::StretchFit; childWidthSizingMode = SizingMode::StretchFit;
} }
if (isColumnStyleDimDefined) { if (isColumnStyleDimDefined) {
childHeight = childHeight =
child->getResolvedDimension(direction, Dimension::Height, ownerHeight) child
->getResolvedDimension(
direction, Dimension::Height, ownerHeight, ownerWidth)
.unwrap() + .unwrap() +
marginColumn; marginColumn;
childHeightSizingMode = SizingMode::StretchFit; childHeightSizingMode = SizingMode::StretchFit;
@@ -476,7 +482,8 @@ static float calculateAvailableInnerDimension(
const Dimension dimension, const Dimension dimension,
const float availableDim, const float availableDim,
const float paddingAndBorder, const float paddingAndBorder,
const float ownerDim) { const float ownerDim,
const float ownerWidth) {
float availableInnerDim = availableDim - paddingAndBorder; float availableInnerDim = availableDim - paddingAndBorder;
// Max dimension overrides predefined dimension value; Min dimension in turn // Max dimension overrides predefined dimension value; Min dimension in turn
// overrides both of the above // overrides both of the above
@@ -484,13 +491,15 @@ static float calculateAvailableInnerDimension(
// We want to make sure our available height does not violate min and max // We want to make sure our available height does not violate min and max
// constraints // constraints
const FloatOptional minDimensionOptional = const FloatOptional minDimensionOptional =
node->style().resolvedMinDimension(direction, dimension, ownerDim); node->style().resolvedMinDimension(
direction, dimension, ownerDim, ownerWidth);
const float minInnerDim = minDimensionOptional.isUndefined() const float minInnerDim = minDimensionOptional.isUndefined()
? 0.0f ? 0.0f
: minDimensionOptional.unwrap() - paddingAndBorder; : minDimensionOptional.unwrap() - paddingAndBorder;
const FloatOptional maxDimensionOptional = const FloatOptional maxDimensionOptional =
node->style().resolvedMaxDimension(direction, dimension, ownerDim); node->style().resolvedMaxDimension(
direction, dimension, ownerDim, ownerWidth);
const float maxInnerDim = maxDimensionOptional.isUndefined() const float maxInnerDim = maxDimensionOptional.isUndefined()
? FLT_MAX ? FLT_MAX
@@ -594,6 +603,7 @@ static float distributeFreeSpaceSecondPass(
const FlexDirection mainAxis, const FlexDirection mainAxis,
const FlexDirection crossAxis, const FlexDirection crossAxis,
const Direction direction, const Direction direction,
const float ownerWidth,
const float mainAxisOwnerSize, const float mainAxisOwnerSize,
const float availableInnerMainDim, const float availableInnerMainDim,
const float availableInnerCrossDim, const float availableInnerCrossDim,
@@ -618,7 +628,8 @@ static float distributeFreeSpaceSecondPass(
direction, direction,
mainAxis, mainAxis,
currentLineChild->getLayout().computedFlexBasis, currentLineChild->getLayout().computedFlexBasis,
mainAxisOwnerSize) mainAxisOwnerSize,
ownerWidth)
.unwrap(); .unwrap();
float updatedMainSize = childFlexBasis; float updatedMainSize = childFlexBasis;
@@ -713,11 +724,13 @@ static float distributeFreeSpaceSecondPass(
? SizingMode::MaxContent ? SizingMode::MaxContent
: SizingMode::FitContent; : SizingMode::FitContent;
} else { } else {
childCrossSize = childCrossSize = currentLineChild
currentLineChild ->getResolvedDimension(
->getResolvedDimension( direction,
direction, dimension(crossAxis), availableInnerCrossDim) dimension(crossAxis),
.unwrap() + availableInnerCrossDim,
availableInnerWidth)
.unwrap() +
marginCross; marginCross;
const bool isLoosePercentageMeasurement = const bool isLoosePercentageMeasurement =
currentLineChild->getProcessedDimension(dimension(crossAxis)) currentLineChild->getProcessedDimension(dimension(crossAxis))
@@ -808,6 +821,7 @@ static void distributeFreeSpaceFirstPass(
FlexLine& flexLine, FlexLine& flexLine,
const Direction direction, const Direction direction,
const FlexDirection mainAxis, const FlexDirection mainAxis,
const float ownerWidth,
const float mainAxisOwnerSize, const float mainAxisOwnerSize,
const float availableInnerMainDim, const float availableInnerMainDim,
const float availableInnerWidth) { const float availableInnerWidth) {
@@ -823,7 +837,8 @@ static void distributeFreeSpaceFirstPass(
direction, direction,
mainAxis, mainAxis,
currentLineChild->getLayout().computedFlexBasis, currentLineChild->getLayout().computedFlexBasis,
mainAxisOwnerSize) mainAxisOwnerSize,
ownerWidth)
.unwrap(); .unwrap();
if (flexLine.layout.remainingFreeSpace < 0) { if (flexLine.layout.remainingFreeSpace < 0) {
@@ -917,6 +932,7 @@ static void resolveFlexibleLength(
const FlexDirection mainAxis, const FlexDirection mainAxis,
const FlexDirection crossAxis, const FlexDirection crossAxis,
const Direction direction, const Direction direction,
const float ownerWidth,
const float mainAxisOwnerSize, const float mainAxisOwnerSize,
const float availableInnerMainDim, const float availableInnerMainDim,
const float availableInnerCrossDim, const float availableInnerCrossDim,
@@ -934,6 +950,7 @@ static void resolveFlexibleLength(
flexLine, flexLine,
direction, direction,
mainAxis, mainAxis,
ownerWidth,
mainAxisOwnerSize, mainAxisOwnerSize,
availableInnerMainDim, availableInnerMainDim,
availableInnerWidth); availableInnerWidth);
@@ -945,6 +962,7 @@ static void resolveFlexibleLength(
mainAxis, mainAxis,
crossAxis, crossAxis,
direction, direction,
ownerWidth,
mainAxisOwnerSize, mainAxisOwnerSize,
availableInnerMainDim, availableInnerMainDim,
availableInnerCrossDim, availableInnerCrossDim,
@@ -993,7 +1011,7 @@ static void justifyMainAxis(
if (style.minDimension(dimension(mainAxis)).isDefined() && if (style.minDimension(dimension(mainAxis)).isDefined() &&
style style
.resolvedMinDimension( .resolvedMinDimension(
direction, dimension(mainAxis), mainAxisOwnerSize) direction, dimension(mainAxis), mainAxisOwnerSize, ownerWidth)
.isDefined()) { .isDefined()) {
// This condition makes sure that if the size of main dimension(after // This condition makes sure that if the size of main dimension(after
// considering child nodes main dim, leading and trailing padding etc) // considering child nodes main dim, leading and trailing padding etc)
@@ -1005,7 +1023,7 @@ static void justifyMainAxis(
const float minAvailableMainDim = const float minAvailableMainDim =
style style
.resolvedMinDimension( .resolvedMinDimension(
direction, dimension(mainAxis), mainAxisOwnerSize) direction, dimension(mainAxis), mainAxisOwnerSize, ownerWidth)
.unwrap() - .unwrap() -
leadingPaddingAndBorderMain - trailingPaddingAndBorderMain; leadingPaddingAndBorderMain - trailingPaddingAndBorderMain;
const float occupiedSpaceByChildNodes = const float occupiedSpaceByChildNodes =
@@ -1403,6 +1421,7 @@ static void calculateLayoutImpl(
Dimension::Width, Dimension::Width,
availableWidth - marginAxisRow, availableWidth - marginAxisRow,
paddingAndBorderAxisRow, paddingAndBorderAxisRow,
ownerWidth,
ownerWidth); ownerWidth);
float availableInnerHeight = calculateAvailableInnerDimension( float availableInnerHeight = calculateAvailableInnerDimension(
node, node,
@@ -1410,7 +1429,8 @@ static void calculateLayoutImpl(
Dimension::Height, Dimension::Height,
availableHeight - marginAxisColumn, availableHeight - marginAxisColumn,
paddingAndBorderAxisColumn, paddingAndBorderAxisColumn,
ownerHeight); ownerHeight,
ownerWidth);
float availableInnerMainDim = float availableInnerMainDim =
isMainAxisRow ? availableInnerWidth : availableInnerHeight; isMainAxisRow ? availableInnerWidth : availableInnerHeight;
@@ -1470,6 +1490,7 @@ static void calculateLayoutImpl(
auto flexLine = calculateFlexLine( auto flexLine = calculateFlexLine(
node, node,
ownerDirection, ownerDirection,
ownerWidth,
mainAxisOwnerSize, mainAxisOwnerSize,
availableInnerWidth, availableInnerWidth,
availableInnerMainDim, availableInnerMainDim,
@@ -1494,19 +1515,27 @@ static void calculateLayoutImpl(
if (sizingModeMainDim != SizingMode::StretchFit) { if (sizingModeMainDim != SizingMode::StretchFit) {
const auto& style = node->style(); const auto& style = node->style();
const float minInnerWidth = const float minInnerWidth =
style.resolvedMinDimension(direction, Dimension::Width, ownerWidth) style
.resolvedMinDimension(
direction, Dimension::Width, ownerWidth, ownerWidth)
.unwrap() - .unwrap() -
paddingAndBorderAxisRow; paddingAndBorderAxisRow;
const float maxInnerWidth = const float maxInnerWidth =
style.resolvedMaxDimension(direction, Dimension::Width, ownerWidth) style
.resolvedMaxDimension(
direction, Dimension::Width, ownerWidth, ownerWidth)
.unwrap() - .unwrap() -
paddingAndBorderAxisRow; paddingAndBorderAxisRow;
const float minInnerHeight = const float minInnerHeight =
style.resolvedMinDimension(direction, Dimension::Height, ownerHeight) style
.resolvedMinDimension(
direction, Dimension::Height, ownerHeight, ownerWidth)
.unwrap() - .unwrap() -
paddingAndBorderAxisColumn; paddingAndBorderAxisColumn;
const float maxInnerHeight = const float maxInnerHeight =
style.resolvedMaxDimension(direction, Dimension::Height, ownerHeight) style
.resolvedMaxDimension(
direction, Dimension::Height, ownerHeight, ownerWidth)
.unwrap() - .unwrap() -
paddingAndBorderAxisColumn; paddingAndBorderAxisColumn;
@@ -1559,6 +1588,7 @@ static void calculateLayoutImpl(
mainAxis, mainAxis,
crossAxis, crossAxis,
direction, direction,
ownerWidth,
mainAxisOwnerSize, mainAxisOwnerSize,
availableInnerMainDim, availableInnerMainDim,
availableInnerCrossDim, availableInnerCrossDim,
@@ -1802,7 +1832,10 @@ static void calculateLayoutImpl(
? availableInnerCrossDim + paddingAndBorderAxisCross ? availableInnerCrossDim + paddingAndBorderAxisCross
: node->hasDefiniteLength(dimension(crossAxis), crossAxisOwnerSize) : node->hasDefiniteLength(dimension(crossAxis), crossAxisOwnerSize)
? node->getResolvedDimension( ? node->getResolvedDimension(
direction, dimension(crossAxis), crossAxisOwnerSize) direction,
dimension(crossAxis),
crossAxisOwnerSize,
ownerWidth)
.unwrap() .unwrap()
: totalLineCrossDim + paddingAndBorderAxisCross; : totalLineCrossDim + paddingAndBorderAxisCross;
@@ -2058,7 +2091,8 @@ static void calculateLayoutImpl(
direction, direction,
mainAxis, mainAxis,
FloatOptional{maxLineMainDim}, FloatOptional{maxLineMainDim},
mainAxisOwnerSize) mainAxisOwnerSize,
ownerWidth)
.unwrap()), .unwrap()),
paddingAndBorderAxisMain), paddingAndBorderAxisMain),
dimension(mainAxis)); dimension(mainAxis));
@@ -2092,7 +2126,8 @@ static void calculateLayoutImpl(
crossAxis, crossAxis,
FloatOptional{ FloatOptional{
totalLineCrossDim + paddingAndBorderAxisCross}, totalLineCrossDim + paddingAndBorderAxisCross},
crossAxisOwnerSize) crossAxisOwnerSize,
ownerWidth)
.unwrap()), .unwrap()),
paddingAndBorderAxisCross), paddingAndBorderAxisCross),
dimension(crossAxis)); dimension(crossAxis));
@@ -2384,13 +2419,20 @@ void calculateLayout(
if (node->hasDefiniteLength(Dimension::Width, ownerWidth)) { if (node->hasDefiniteLength(Dimension::Width, ownerWidth)) {
width = width =
(node->getResolvedDimension( (node->getResolvedDimension(
direction, dimension(FlexDirection::Row), ownerWidth) direction,
dimension(FlexDirection::Row),
ownerWidth,
ownerWidth)
.unwrap() + .unwrap() +
node->style().computeMarginForAxis(FlexDirection::Row, ownerWidth)); node->style().computeMarginForAxis(FlexDirection::Row, ownerWidth));
widthSizingMode = SizingMode::StretchFit; widthSizingMode = SizingMode::StretchFit;
} else if (style.resolvedMaxDimension(direction, Dimension::Width, ownerWidth) } else if (style
.resolvedMaxDimension(
direction, Dimension::Width, ownerWidth, ownerWidth)
.isDefined()) { .isDefined()) {
width = style.resolvedMaxDimension(direction, Dimension::Width, ownerWidth) width = style
.resolvedMaxDimension(
direction, Dimension::Width, ownerWidth, ownerWidth)
.unwrap(); .unwrap();
widthSizingMode = SizingMode::FitContent; widthSizingMode = SizingMode::FitContent;
} else { } else {
@@ -2404,17 +2446,21 @@ void calculateLayout(
if (node->hasDefiniteLength(Dimension::Height, ownerHeight)) { if (node->hasDefiniteLength(Dimension::Height, ownerHeight)) {
height = height =
(node->getResolvedDimension( (node->getResolvedDimension(
direction, dimension(FlexDirection::Column), ownerHeight) direction,
dimension(FlexDirection::Column),
ownerHeight,
ownerWidth)
.unwrap() + .unwrap() +
node->style().computeMarginForAxis(FlexDirection::Column, ownerWidth)); node->style().computeMarginForAxis(FlexDirection::Column, ownerWidth));
heightSizingMode = SizingMode::StretchFit; heightSizingMode = SizingMode::StretchFit;
} else if (style } else if (style
.resolvedMaxDimension( .resolvedMaxDimension(
direction, Dimension::Height, ownerHeight) direction, Dimension::Height, ownerHeight, ownerWidth)
.isDefined()) { .isDefined()) {
height = height = style
style.resolvedMaxDimension(direction, Dimension::Height, ownerHeight) .resolvedMaxDimension(
.unwrap(); direction, Dimension::Height, ownerHeight, ownerWidth)
.unwrap();
heightSizingMode = SizingMode::FitContent; heightSizingMode = SizingMode::FitContent;
} else { } else {
height = ownerHeight; height = ownerHeight;

View File

@@ -16,6 +16,7 @@ namespace facebook::yoga {
FlexLine calculateFlexLine( FlexLine calculateFlexLine(
yoga::Node* const node, yoga::Node* const node,
const Direction ownerDirection, const Direction ownerDirection,
const float ownerWidth,
const float mainAxisownerSize, const float mainAxisownerSize,
const float availableInnerWidth, const float availableInnerWidth,
const float availableInnerMainDim, const float availableInnerMainDim,
@@ -71,7 +72,8 @@ FlexLine calculateFlexLine(
direction, direction,
mainAxis, mainAxis,
child->getLayout().computedFlexBasis, child->getLayout().computedFlexBasis,
mainAxisownerSize) mainAxisownerSize,
ownerWidth)
.unwrap(); .unwrap();
// If this is a multi-line flow and this item pushes us over the available // If this is a multi-line flow and this item pushes us over the available

View File

@@ -68,6 +68,7 @@ struct FlexLine {
FlexLine calculateFlexLine( FlexLine calculateFlexLine(
yoga::Node* node, yoga::Node* node,
Direction ownerDirection, Direction ownerDirection,
float ownerWidth,
float mainAxisownerSize, float mainAxisownerSize,
float availableInnerWidth, float availableInnerWidth,
float availableInnerMainDim, float availableInnerMainDim,

View File

@@ -296,16 +296,16 @@ Style::Length Node::processFlexBasis() const {
FloatOptional Node::resolveFlexBasis( FloatOptional Node::resolveFlexBasis(
Direction direction, Direction direction,
FlexDirection flexDirection, FlexDirection flexDirection,
float referenceLength) const { float referenceLength,
float ownerWidth) const {
FloatOptional value = processFlexBasis().resolve(referenceLength); FloatOptional value = processFlexBasis().resolve(referenceLength);
if (style_.boxSizing() == BoxSizing::BorderBox) { if (style_.boxSizing() == BoxSizing::BorderBox) {
return value; return value;
} }
Dimension dim = dimension(flexDirection); Dimension dim = dimension(flexDirection);
FloatOptional dimensionPaddingAndBorder = FloatOptional dimensionPaddingAndBorder = FloatOptional{
FloatOptional{style_.computePaddingAndBorderForDimension( style_.computePaddingAndBorderForDimension(direction, dim, ownerWidth)};
direction, dim, referenceLength)};
return value + return value +
(dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder (dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder

View File

@@ -159,7 +159,8 @@ class YG_EXPORT Node : public ::YGNode {
FloatOptional getResolvedDimension( FloatOptional getResolvedDimension(
Direction direction, Direction direction,
Dimension dimension, Dimension dimension,
float referenceLength) const { float referenceLength,
float ownerWidth) const {
FloatOptional value = FloatOptional value =
getProcessedDimension(dimension).resolve(referenceLength); getProcessedDimension(dimension).resolve(referenceLength);
if (style_.boxSizing() == BoxSizing::BorderBox) { if (style_.boxSizing() == BoxSizing::BorderBox) {
@@ -168,7 +169,7 @@ class YG_EXPORT Node : public ::YGNode {
FloatOptional dimensionPaddingAndBorder = FloatOptional dimensionPaddingAndBorder =
FloatOptional{style_.computePaddingAndBorderForDimension( FloatOptional{style_.computePaddingAndBorderForDimension(
direction, dimension, referenceLength)}; direction, dimension, ownerWidth)};
return value + return value +
(dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder (dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder
@@ -251,7 +252,8 @@ class YG_EXPORT Node : public ::YGNode {
FloatOptional resolveFlexBasis( FloatOptional resolveFlexBasis(
Direction direction, Direction direction,
FlexDirection flexDirection, FlexDirection flexDirection,
float referenceLength) const; float referenceLength,
float ownerWidth) const;
void processDimensions(); void processDimensions();
Direction resolveDirection(Direction ownerDirection); Direction resolveDirection(Direction ownerDirection);
void clearChildren(); void clearChildren();

View File

@@ -192,14 +192,15 @@ class YG_EXPORT Style {
FloatOptional resolvedMinDimension( FloatOptional resolvedMinDimension(
Direction direction, Direction direction,
Dimension axis, Dimension axis,
float referenceLength) const { float referenceLength,
float ownerWidth) const {
FloatOptional value = minDimension(axis).resolve(referenceLength); FloatOptional value = minDimension(axis).resolve(referenceLength);
if (boxSizing() == BoxSizing::BorderBox) { if (boxSizing() == BoxSizing::BorderBox) {
return value; return value;
} }
FloatOptional dimensionPaddingAndBorder = FloatOptional{ FloatOptional dimensionPaddingAndBorder = FloatOptional{
computePaddingAndBorderForDimension(direction, axis, referenceLength)}; computePaddingAndBorderForDimension(direction, axis, ownerWidth)};
return value + return value +
(dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder (dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder
@@ -216,14 +217,15 @@ class YG_EXPORT Style {
FloatOptional resolvedMaxDimension( FloatOptional resolvedMaxDimension(
Direction direction, Direction direction,
Dimension axis, Dimension axis,
float referenceLength) const { float referenceLength,
float ownerWidth) const {
FloatOptional value = maxDimension(axis).resolve(referenceLength); FloatOptional value = maxDimension(axis).resolve(referenceLength);
if (boxSizing() == BoxSizing::BorderBox) { if (boxSizing() == BoxSizing::BorderBox) {
return value; return value;
} }
FloatOptional dimensionPaddingAndBorder = FloatOptional{ FloatOptional dimensionPaddingAndBorder = FloatOptional{
computePaddingAndBorderForDimension(direction, axis, referenceLength)}; computePaddingAndBorderForDimension(direction, axis, ownerWidth)};
return value + return value +
(dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder (dimensionPaddingAndBorder.isDefined() ? dimensionPaddingAndBorder