mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Backout accidental checkin.
This commit is contained in:
parent
87c892cb79
commit
9a2f31f253
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user