Index: Source/core/svg/SVGSVGElement.cpp |
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp |
index 615d4c859d730632b7cafd58883ac7cf112f2864..107f5a65babce5892c3ea852c75f52b94d8afc55 100644 |
--- a/Source/core/svg/SVGSVGElement.cpp |
+++ b/Source/core/svg/SVGSVGElement.cpp |
@@ -103,30 +103,6 @@ SVGSVGElement::~SVGSVGElement() |
ASSERT(inDocument() || !accessDocumentSVGExtensions().isSVGRootWithRelativeLengthDescendents(this)); |
} |
-const AtomicString& SVGSVGElement::contentScriptType() const |
-{ |
- DEFINE_STATIC_LOCAL(const AtomicString, defaultValue, ("text/ecmascript", AtomicString::ConstructFromLiteral)); |
- const AtomicString& n = fastGetAttribute(SVGNames::contentScriptTypeAttr); |
- return n.isNull() ? defaultValue : n; |
-} |
- |
-void SVGSVGElement::setContentScriptType(const AtomicString& type) |
-{ |
- setAttribute(SVGNames::contentScriptTypeAttr, type); |
-} |
- |
-const AtomicString& SVGSVGElement::contentStyleType() const |
-{ |
- DEFINE_STATIC_LOCAL(const AtomicString, defaultValue, ("text/css", AtomicString::ConstructFromLiteral)); |
- const AtomicString& n = fastGetAttribute(SVGNames::contentStyleTypeAttr); |
- return n.isNull() ? defaultValue : n; |
-} |
- |
-void SVGSVGElement::setContentStyleType(const AtomicString& type) |
-{ |
- setAttribute(SVGNames::contentStyleTypeAttr, type); |
-} |
- |
PassRefPtr<SVGRectTearOff> SVGSVGElement::viewport() const |
{ |
// FIXME: This method doesn't follow the spec and is basically untested. Parent documents are not considered here. |