| Index: Source/core/svg/SVGScriptElement.h
|
| diff --git a/Source/core/svg/SVGScriptElement.h b/Source/core/svg/SVGScriptElement.h
|
| index 1d7f0d1e27d153127cc1ce98dac68bccc68b4375..aae007c7a580dbb088eaf103aef563d10352eac9 100644
|
| --- a/Source/core/svg/SVGScriptElement.h
|
| +++ b/Source/core/svg/SVGScriptElement.h
|
| @@ -43,6 +43,7 @@ public:
|
| void setType(const String&);
|
|
|
| ScriptLoader* loader() const { return m_loader.get(); }
|
| + SVGAnimatedString* href() { return m_href.get(); }
|
|
|
| private:
|
| SVGScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
|
| @@ -77,8 +78,8 @@ private:
|
|
|
| virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadEventTimer; }
|
|
|
| + RefPtr<SVGAnimatedString> m_href;
|
| BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGScriptElement)
|
| - DECLARE_ANIMATED_STRING(Href, href)
|
| END_DECLARE_ANIMATED_PROPERTIES
|
|
|
| String m_type;
|
|
|