Summary: flexlayout has the same fixtures forked from Yoga, with some disabled, and some added. This syncs that list to Yoga, adding the fixes made to it along with new fixtures. One new test absolute_child_with_max_height_larger_shrinkable_grandchild is failing, along with two fixtures where Chrome had recently changed its behaviors. These are commented out at the moment before I do something smarter with the test runner to allow more fixtures. Differential Revision: D42242096 fbshipit-source-id: dad07c72101c32b48f7c5a5fa8f46d43d2637222
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<div id="align_self_center" style="width:100px; height: 100px;">
|
|
<div style="height: 10px; width: 10px; align-self: center;"></div>
|
|
</div>
|
|
|
|
<div id="align_self_center_undefined_max_height" style="width: 280px; min-height: 52px; flex-direction: row;">
|
|
<div style="height: 44px; width: 240px;"></div>
|
|
<div style="height: 56px; width: 40px; align-self: center;"></div>
|
|
</div>
|
|
|
|
<div id="align_self_flex_end" style="width:100px; height: 100px;">
|
|
<div style="height: 10px; width: 10px; align-self: flex-end;"></div>
|
|
</div>
|
|
|
|
<div id="align_self_flex_start" style="width:100px; height: 100px;">
|
|
<div style="height: 10px; width: 10px; align-self: flex-start;"></div>
|
|
</div>
|
|
|
|
<div id="align_self_flex_end_override_flex_start" style="width:100px; height: 100px; align-items: flex-start;">
|
|
<div style="height: 10px; width: 10px; align-self: flex-end;"></div>
|
|
</div>
|
|
|
|
|
|
<div id="align_self_baseline" style="width: 100px; height: 100px; flex-direction:row;">
|
|
<div style="width: 50px; height: 50px;align-self: baseline;"></div>
|
|
<div style="width: 50px; height: 20px;align-self: baseline;">
|
|
<div style="width: 50px; height: 10px;"></div>
|
|
</div>
|
|
</div>
|