2016-11-20 04:59:55 -08:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
#include <CSSLayout/Yoga.h>
|
2016-11-20 04:59:55 -08:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
TEST(YogaTest, dont_cache_computed_flex_basis_between_layouts) {
|
|
|
|
YGSetExperimentalFeatureEnabled(YGExperimentalFeatureWebFlexBasis, true);
|
2016-11-23 05:25:50 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
const YGNodeRef root = YGNodeNew();
|
2016-11-20 04:59:55 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
const YGNodeRef root_child0 = YGNodeNew();
|
|
|
|
YGNodeStyleSetHeight(root_child0, 10);
|
|
|
|
YGNodeStyleSetFlexBasis(root_child0, 20);
|
|
|
|
YGNodeInsertChild(root, root_child0, 0);
|
2016-11-20 04:59:55 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
YGNodeCalculateLayout(root, 100, YGUndefined, YGDirectionLTR);
|
|
|
|
YGNodeCalculateLayout(root, 100, 100, YGDirectionLTR);
|
2016-11-20 04:59:55 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
ASSERT_FLOAT_EQ(20, YGNodeLayoutGetHeight(root_child0));
|
2016-11-20 04:59:55 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
YGNodeFreeRecursive(root);
|
2016-11-23 11:12:51 -08:00
|
|
|
|
2016-12-03 04:40:18 -08:00
|
|
|
YGSetExperimentalFeatureEnabled(YGExperimentalFeatureWebFlexBasis, false);
|
2016-11-20 04:59:55 -08:00
|
|
|
}
|