зеркало из https://github.com/mozilla/pjs.git
Bug 482379: Wrap an SVG-related precondition with "#ifdef MOZ_SVG", to fix build failure when using --disable-svg. r+sr=roc
This commit is contained in:
Родитель
66f82d6342
Коммит
be19df267f
|
@ -3188,9 +3188,14 @@ nsLayoutUtils::InitTextRunContainerForPrinting(nsIContent* aContent,
|
|||
nsIFrame* aFrame,
|
||||
nsFrameState aBits)
|
||||
{
|
||||
#ifdef MOZ_SVG
|
||||
NS_PRECONDITION(aFrame->GetType() == nsGkAtoms::textFrame ||
|
||||
aFrame->GetType() == nsGkAtoms::svgGlyphFrame,
|
||||
"Wrong frame type!");
|
||||
#else
|
||||
NS_PRECONDITION(aFrame->GetType() == nsGkAtoms::textFrame,
|
||||
"Wrong frame type!");
|
||||
#endif // MOZ_SVG
|
||||
|
||||
nsPresContext* presContext = aFrame->PresContext();
|
||||
if (presContext->IsDynamic()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче