зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1307402 - reformat if-else-statements in nsFirstLetterFrame.cpp to agree with mozilla coding style. r=jfkthame
MozReview-Commit-ID: L9V1cEkmtkF --HG-- extra : rebase_source : 3c7e3ad5850d0be33f24e27a18eff7fdb8989d16
This commit is contained in:
Родитель
965c6b6f1a
Коммит
2b9135929b
|
@ -101,12 +101,11 @@ nsFirstLetterFrame::GetChildFrameContainingOffset(int32_t inContentOffset,
|
|||
nsIFrame **outChildFrame)
|
||||
{
|
||||
nsIFrame *kid = mFrames.FirstChild();
|
||||
if (kid)
|
||||
{
|
||||
if (kid) {
|
||||
return kid->GetChildFrameContainingOffset(inContentOffset, inHint, outFrameContentOffset, outChildFrame);
|
||||
}
|
||||
else
|
||||
} else {
|
||||
return nsFrame::GetChildFrameContainingOffset(inContentOffset, inHint, outFrameContentOffset, outChildFrame);
|
||||
}
|
||||
}
|
||||
|
||||
// Needed for non-floating first-letter frames and for the continuations
|
||||
|
@ -240,8 +239,7 @@ nsFirstLetterFrame::Reflow(nsPresContext* aPresContext,
|
|||
ConsiderChildOverflow(aMetrics.mOverflowAreas, kid);
|
||||
|
||||
FinishAndStoreOverflow(&aMetrics);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
// Pretend we are a span and reflow the child frame
|
||||
nsLineLayout* ll = aReflowInput.mLineLayout;
|
||||
bool pushedFrame;
|
||||
|
@ -273,8 +271,7 @@ nsFirstLetterFrame::Reflow(nsPresContext* aPresContext,
|
|||
// Remove all of the childs next-in-flows
|
||||
kidNextInFlow->GetParent()->DeleteNextInFlowChild(kidNextInFlow, true);
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
// Create a continuation for the child frame if it doesn't already
|
||||
// have one.
|
||||
if (!IsFloating()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче