Bug 811024 part 1: Teach nsCSSFrameConstructor how to split a flex container. r=mats

This commit is contained in:
Daniel Holbert 2013-11-21 10:20:01 -08:00
Родитель 38232338a4
Коммит d1258eda0f
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -8111,6 +8111,9 @@ nsCSSFrameConstructor::CreateContinuingFrame(nsPresContext* aPresContext,
} else if (nsGkAtoms::legendFrame == frameType) {
newFrame = NS_NewLegendFrame(shell, styleContext);
newFrame->Init(content, aParentFrame, aFrame);
} else if (nsGkAtoms::flexContainerFrame == frameType) {
newFrame = NS_NewFlexContainerFrame(shell, styleContext);
newFrame->Init(content, aParentFrame, aFrame);
} else {
NS_RUNTIMEABORT("unexpected frame type");
}