From 9a2f31f253cb9f6ea223edfc3b852abbe159efcc Mon Sep 17 00:00:00 2001 From: "tor%cs.brown.edu" Date: Thu, 14 Oct 2004 17:11:53 +0000 Subject: [PATCH] Backout accidental checkin. --- content/svg/content/src/Makefile.in | 4 +--- content/svg/content/src/nsSVGElementFactory.cpp | 8 -------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/content/svg/content/src/Makefile.in b/content/svg/content/src/Makefile.in index 5f4048b434f7..bbe3d0ef18cd 100644 --- a/content/svg/content/src/Makefile.in +++ b/content/svg/content/src/Makefile.in @@ -72,7 +72,6 @@ CPPSRCS = \ nsSVGCircleElement.cpp \ nsSVGClassValue.cpp \ nsSVGCoordCtxProvider.cpp \ - nsSVGDefsElement.cpp \ nsSVGElement.cpp \ nsSVGElementFactory.cpp \ nsSVGEllipseElement.cpp \ @@ -103,13 +102,12 @@ CPPSRCS = \ nsSVGRectElement.cpp \ nsSVGSVGElement.cpp \ nsSVGStyleElement.cpp \ - nsSVGSymbolElement.cpp \ nsSVGTSpanElement.cpp \ nsSVGTextElement.cpp \ nsSVGTransform.cpp \ nsSVGTransformList.cpp \ - nsSVGUseElement.cpp \ nsSVGValue.cpp \ + nsSVGDefsElement.cpp \ $(NULL) include $(topsrcdir)/config/config.mk diff --git a/content/svg/content/src/nsSVGElementFactory.cpp b/content/svg/content/src/nsSVGElementFactory.cpp index a2aa10523ce3..75653bcce35e 100644 --- a/content/svg/content/src/nsSVGElementFactory.cpp +++ b/content/svg/content/src/nsSVGElementFactory.cpp @@ -75,10 +75,6 @@ nsresult NS_NewSVGDefsElement(nsIContent **aResult, nsINodeInfo *aNodeInfo); nsresult NS_NewSVGScriptElement(nsIContent **aResult, nsINodeInfo *aNodeInfo); -nsresult -NS_NewSVGUseElement(nsIContent **aResult, nsINodeInfo *aNodeInfo); -nsresult -NS_NewSVGSymbolElement(nsIContent **aResult, nsINodeInfo *aNodeInfo); nsresult NS_NewSVGElement(nsIContent** aResult, nsINodeInfo *aNodeInfo) @@ -117,10 +113,6 @@ NS_NewSVGElement(nsIContent** aResult, nsINodeInfo *aNodeInfo) return NS_NewSVGDefsElement(aResult, aNodeInfo); if (name == nsSVGAtoms::script) return NS_NewSVGScriptElement(aResult, aNodeInfo); - if (name == nsSVGAtoms::use) - return NS_NewSVGUseElement(aResult, aNodeInfo); - if (name == nsSVGAtoms::symbol) - return NS_NewSVGSymbolElement(aResult, aNodeInfo); // if we don't know what to create, just create a standard xml element: return NS_NewXMLElement(aResult, aNodeInfo);