mirror of
https://github.com/status-im/react-native.git
synced 2025-02-05 06:04:15 +00:00
Fix and add tests for cssedge priority
Reviewed By: lucasr Differential Revision: D3791106 fbshipit-source-id: 3e0c943f94218848a1fbf36e5ae48dbc720ea923
This commit is contained in:
parent
06e52f8e8c
commit
e5aa29c195
@ -479,8 +479,8 @@ static bool isColumnDirection(const CSSFlexDirection flexDirection) {
|
||||
|
||||
static float getLeadingMargin(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.margin, CSSEdgeStart, 0))) {
|
||||
return computedEdgeValue(node->style.margin, CSSEdgeStart, 0);
|
||||
!CSSValueIsUndefined(node->style.margin[CSSEdgeStart])) {
|
||||
return node->style.margin[CSSEdgeStart];
|
||||
}
|
||||
|
||||
return computedEdgeValue(node->style.margin, leading[axis], 0);
|
||||
@ -488,8 +488,8 @@ static float getLeadingMargin(const CSSNodeRef node, const CSSFlexDirection axis
|
||||
|
||||
static float getTrailingMargin(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.margin, CSSEdgeEnd, 0))) {
|
||||
return computedEdgeValue(node->style.margin, CSSEdgeEnd, 0);
|
||||
!CSSValueIsUndefined(node->style.margin[CSSEdgeEnd])) {
|
||||
return node->style.margin[CSSEdgeEnd];
|
||||
}
|
||||
|
||||
return computedEdgeValue(node->style.margin, trailing[axis], 0);
|
||||
@ -497,9 +497,9 @@ static float getTrailingMargin(const CSSNodeRef node, const CSSFlexDirection axi
|
||||
|
||||
static float getLeadingPadding(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.padding, CSSEdgeStart, 0)) &&
|
||||
computedEdgeValue(node->style.padding, CSSEdgeStart, 0) >= 0) {
|
||||
return computedEdgeValue(node->style.padding, CSSEdgeStart, 0);
|
||||
!CSSValueIsUndefined(node->style.padding[CSSEdgeStart]) &&
|
||||
node->style.padding[CSSEdgeStart] >= 0) {
|
||||
return node->style.padding[CSSEdgeStart];
|
||||
}
|
||||
|
||||
if (computedEdgeValue(node->style.padding, leading[axis], 0) >= 0) {
|
||||
@ -511,9 +511,9 @@ static float getLeadingPadding(const CSSNodeRef node, const CSSFlexDirection axi
|
||||
|
||||
static float getTrailingPadding(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.padding, CSSEdgeEnd, 0)) &&
|
||||
computedEdgeValue(node->style.padding, CSSEdgeEnd, 0) >= 0) {
|
||||
return computedEdgeValue(node->style.padding, CSSEdgeEnd, 0);
|
||||
!CSSValueIsUndefined(node->style.padding[CSSEdgeEnd]) &&
|
||||
node->style.padding[CSSEdgeEnd] >= 0) {
|
||||
return node->style.padding[CSSEdgeEnd];
|
||||
}
|
||||
|
||||
if (computedEdgeValue(node->style.padding, trailing[axis], 0) >= 0) {
|
||||
@ -525,9 +525,9 @@ static float getTrailingPadding(const CSSNodeRef node, const CSSFlexDirection ax
|
||||
|
||||
static float getLeadingBorder(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.border, CSSEdgeStart, 0)) &&
|
||||
computedEdgeValue(node->style.border, CSSEdgeStart, 0) >= 0) {
|
||||
return computedEdgeValue(node->style.border, CSSEdgeStart, 0);
|
||||
!CSSValueIsUndefined(node->style.border[CSSEdgeStart]) &&
|
||||
node->style.border[CSSEdgeStart] >= 0) {
|
||||
return node->style.border[CSSEdgeStart];
|
||||
}
|
||||
|
||||
if (computedEdgeValue(node->style.border, leading[axis], 0) >= 0) {
|
||||
@ -539,9 +539,9 @@ static float getLeadingBorder(const CSSNodeRef node, const CSSFlexDirection axis
|
||||
|
||||
static float getTrailingBorder(const CSSNodeRef node, const CSSFlexDirection axis) {
|
||||
if (isRowDirection(axis) &&
|
||||
!CSSValueIsUndefined(computedEdgeValue(node->style.border, CSSEdgeEnd, 0)) &&
|
||||
computedEdgeValue(node->style.border, CSSEdgeEnd, 0) >= 0) {
|
||||
return computedEdgeValue(node->style.border, CSSEdgeEnd, 0);
|
||||
!CSSValueIsUndefined(node->style.border[CSSEdgeEnd]) &&
|
||||
node->style.border[CSSEdgeEnd] >= 0) {
|
||||
return node->style.border[CSSEdgeEnd];
|
||||
}
|
||||
|
||||
if (computedEdgeValue(node->style.border, trailing[axis], 0) >= 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user