mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 789096 patch 3a - followup to fix usage of LOGICAL_SIDE flags in nsTableColGroupFrame.cpp. r=smontagu
This commit is contained in:
parent
b23c53b0d6
commit
b0554eb41c
@ -338,10 +338,10 @@ nsTableColGroupFrame::GetLogicalSkipSides(const nsHTMLReflowState* aReflowState)
|
|||||||
|
|
||||||
int skip = 0;
|
int skip = 0;
|
||||||
if (nullptr != GetPrevInFlow()) {
|
if (nullptr != GetPrevInFlow()) {
|
||||||
skip |= 1 << LOGICAL_SIDE_B_START;
|
skip |= LOGICAL_SIDE_B_START;
|
||||||
}
|
}
|
||||||
if (nullptr != GetNextInFlow()) {
|
if (nullptr != GetNextInFlow()) {
|
||||||
skip |= 1 << LOGICAL_SIDE_B_END;
|
skip |= LOGICAL_SIDE_B_END;
|
||||||
}
|
}
|
||||||
return skip;
|
return skip;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user