From 0cf414cc753ea71b9e74d7ba6ba87eb83dcc5a99 Mon Sep 17 00:00:00 2001 From: Robert Longson Date: Sun, 17 Aug 2008 15:35:58 +0100 Subject: [PATCH] Bug 450495 - Bustage fix --- content/svg/content/src/nsSVGElementFactory.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/svg/content/src/nsSVGElementFactory.cpp b/content/svg/content/src/nsSVGElementFactory.cpp index 143f760d211..a5cd818e4af 100644 --- a/content/svg/content/src/nsSVGElementFactory.cpp +++ b/content/svg/content/src/nsSVGElementFactory.cpp @@ -192,10 +192,8 @@ NS_NewSVGElement(nsIContent** aResult, nsINodeInfo *aNodeInfo) return NS_NewSVGSVGElement(aResult, aNodeInfo); if (name == nsGkAtoms::g) return NS_NewSVGGElement(aResult, aNodeInfo); -#ifdef MOZ_SVG_FOREIGNOBJECT if (name == nsGkAtoms::foreignObject) return NS_NewSVGForeignObjectElement(aResult, aNodeInfo); -#endif if (name == nsGkAtoms::path) return NS_NewSVGPathElement(aResult, aNodeInfo); if (name == nsGkAtoms::text)