Summary: - Revise scripts to generate Java and C# unittests using the same HTML fixtures as well as C for code coverage. - Add wrap_column test workaround in gentest.js. - Add checkDefaultValues for sanity check of the CSSLayout default values by test-template.html - Add `align-content: flex-start;` in default div to align with CSSLayout default $ cd csharp/gentest $ ruby gentest.rb - macOS example for C# $ cd csharp/tests/Facebook.CSSLayout $ clang -DCSS_ASSERT_FAIL_ENABLED -Wall -Wextra -dynamiclib -o libCSSLayout.dylib -g -I../../.. ../../../CSSLayout/*.c ../../CSSLayout/CSSInterop.cpp $ mcs -debug -t:library -r:nunit.framework.dll -out:CSSLayoutTest.dll *.cs ../../../csharp/Facebook.CSSLayout/*cs $ mono64 --debug nunit-console.exe CSSLayoutTest.dll Reviewed By: emilsjolander Differential Revision: D4053777 fbshipit-source-id: 84450208015e65baf604987bd56c6a268598b545
19 lines
695 B
HTML
19 lines
695 B
HTML
<div id="padding_no_size" style="padding: 10px;">
|
|
</div>
|
|
|
|
<div id="padding_container_match_child" style="padding: 10px;">
|
|
<div style="width: 10px; height: 10px;"></div>
|
|
</div>
|
|
|
|
<div id="padding_flex_child" style="width: 100px; height: 100px; padding: 10px;">
|
|
<div style="width: 10px; flex-grow:1"></div>
|
|
</div>
|
|
|
|
<div id="padding_stretch_child" style="width: 100px; height: 100px; padding: 10px;">
|
|
<div style="height: 10px;"></div>
|
|
</div>
|
|
|
|
<div id="padding_center_child" style="width: 100px; height: 100px; padding-start: 10px; padding-top: 10; padding-end: 20px; padding-bottom: 20px; align-items: center; justify-content: center;">
|
|
<div style="height: 10px; width: 10px;"></div>
|
|
</div>
|