Bug 1324072 - Use the frame's BStart, not rect's (fixes typo from bug 789096). r=jfkthame

This commit is contained in:
Mats Palmgren 2016-12-19 16:48:36 +01:00
Родитель 72f817124f
Коммит f8383bac25
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -858,8 +858,9 @@ nsMathMLmtableWrapperFrame::Reflow(nsPresContext* aPresContext,
aReflowInput.ComputedSizeAsContainerIfConstrained());
blockSize = rect.BSize(wm);
do {
dy += rect.BStart(wm);
frame = frame->GetParent();
nsIFrame* parent = frame->GetParent();
dy += frame->BStart(wm, parent->GetSize());
frame = parent;
} while (frame != this);
}
}