| Index: Source/core/svg/SVGElement.h
|
| diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h
|
| index fc0afdf983e13a49270e8fdb6fc285c2842eac60..04155f1dac6138bbac1644d28f9baa96354b7610 100644
|
| --- a/Source/core/svg/SVGElement.h
|
| +++ b/Source/core/svg/SVGElement.h
|
| @@ -67,7 +67,6 @@ public:
|
| virtual String title() const override;
|
| bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEmpty(); }
|
| static bool isAnimatableCSSProperty(const QualifiedName&);
|
| - virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const { return false; }
|
|
|
| enum CTMScope {
|
| NearestViewportScope, // Used by SVGGraphicsElement::getCTM()
|
| @@ -193,6 +192,7 @@ public:
|
| static const AtomicString& eventParameterName();
|
|
|
| virtual bool isPresentationAttribute(const QualifiedName&) const override;
|
| + virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const { return false; }
|
|
|
| protected:
|
| SVGElement(const QualifiedName&, Document&, ConstructionType = CreateSVGElement);
|
|
|