Bug 404636 - "Building without SVG fails" [p=romaxa@gmail.com (romaxa) r+sr=roc a1.9=schrep]

This commit is contained in:
reed@reedloden.com 2007-11-21 13:09:12 -08:00
Родитель e54406bd0e
Коммит 98992c2e45
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -760,7 +760,10 @@ IsPercentageAware(const nsIFrame* aFrame)
}
// Handle SVG, which doesn't map width/height into style
if ((fType == nsGkAtoms::svgOuterSVGFrame ||
if ((
#ifdef MOZ_SVG
fType == nsGkAtoms::svgOuterSVGFrame ||
#endif
fType == nsGkAtoms::subDocumentFrame) &&
const_cast<nsIFrame*>(aFrame)->GetIntrinsicSize().width.GetUnit() ==
eStyleUnit_Percent) {