bug 789096 patch 3a - followup to fix usage of LOGICAL_SIDE flags in nsTableColGroupFrame.cpp. r=smontagu

This commit is contained in:
Jonathan Kew 2014-06-24 10:53:58 +01:00
parent b23c53b0d6
commit b0554eb41c

View File

@ -338,10 +338,10 @@ nsTableColGroupFrame::GetLogicalSkipSides(const nsHTMLReflowState* aReflowState)
int skip = 0;
if (nullptr != GetPrevInFlow()) {
skip |= 1 << LOGICAL_SIDE_B_START;
skip |= LOGICAL_SIDE_B_START;
}
if (nullptr != GetNextInFlow()) {
skip |= 1 << LOGICAL_SIDE_B_END;
skip |= LOGICAL_SIDE_B_END;
}
return skip;
}