/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @generated SignedSource<<64d58fa2d33230f4eafc9ecbb6012a0d>> * generated by gentest/gentest-driver.ts from gentest/fixtures/YGDisplayContentsTest.html */ import { instrinsicSizeMeasureFunc } from '../tools/utils.ts' import Yoga from 'yoga-layout'; import { Align, BoxSizing, Direction, Display, Edge, Errata, ExperimentalFeature, FlexDirection, Gutter, Justify, MeasureMode, Overflow, PositionType, Unit, Wrap, } from 'yoga-layout'; test('test1', () => { const config = Yoga.Config.create(); let root; try { root = Yoga.Node.create(config); root.setFlexDirection(FlexDirection.Row); root.setPositionType(PositionType.Absolute); root.setWidth(100); root.setHeight(100); const root_child0 = Yoga.Node.create(config); root_child0.setDisplay(Display.Contents); root.insertChild(root_child0, 0); const root_child0_child0 = Yoga.Node.create(config); root_child0_child0.setFlexGrow(1); root_child0_child0.setFlexShrink(1); root_child0_child0.setFlexBasis("0%"); root_child0_child0.setHeight(10); root_child0.insertChild(root_child0_child0, 0); const root_child0_child1 = Yoga.Node.create(config); root_child0_child1.setFlexGrow(1); root_child0_child1.setFlexShrink(1); root_child0_child1.setFlexBasis("0%"); root_child0_child1.setHeight(20); root_child0.insertChild(root_child0_child1, 1); root.calculateLayout(undefined, undefined, Direction.LTR); expect(root.getComputedLeft()).toBe(0); expect(root.getComputedTop()).toBe(0); expect(root.getComputedWidth()).toBe(100); expect(root.getComputedHeight()).toBe(100); expect(root_child0.getComputedLeft()).toBe(0); expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedWidth()).toBe(0); expect(root_child0.getComputedHeight()).toBe(0); expect(root_child0_child0.getComputedLeft()).toBe(0); expect(root_child0_child0.getComputedTop()).toBe(0); expect(root_child0_child0.getComputedWidth()).toBe(50); expect(root_child0_child0.getComputedHeight()).toBe(10); expect(root_child0_child1.getComputedLeft()).toBe(50); expect(root_child0_child1.getComputedTop()).toBe(0); expect(root_child0_child1.getComputedWidth()).toBe(50); expect(root_child0_child1.getComputedHeight()).toBe(20); root.calculateLayout(undefined, undefined, Direction.RTL); expect(root.getComputedLeft()).toBe(0); expect(root.getComputedTop()).toBe(0); expect(root.getComputedWidth()).toBe(100); expect(root.getComputedHeight()).toBe(100); expect(root_child0.getComputedLeft()).toBe(0); expect(root_child0.getComputedTop()).toBe(0); expect(root_child0.getComputedWidth()).toBe(0); expect(root_child0.getComputedHeight()).toBe(0); expect(root_child0_child0.getComputedLeft()).toBe(50); expect(root_child0_child0.getComputedTop()).toBe(0); expect(root_child0_child0.getComputedWidth()).toBe(50); expect(root_child0_child0.getComputedHeight()).toBe(10); expect(root_child0_child1.getComputedLeft()).toBe(0); expect(root_child0_child1.getComputedTop()).toBe(0); expect(root_child0_child1.getComputedWidth()).toBe(50); expect(root_child0_child1.getComputedHeight()).toBe(20); } finally { if (typeof root !== 'undefined') { root.freeRecursive(); } config.free(); } });