Index: Source/core/svg/SVGForeignObjectElement.h |
diff --git a/Source/core/svg/SVGForeignObjectElement.h b/Source/core/svg/SVGForeignObjectElement.h |
index d02aa04ff7cea3817cddc31da757485167775981..30a2204c35a78452487a67512e7a2a434ff837fa 100644 |
--- a/Source/core/svg/SVGForeignObjectElement.h |
+++ b/Source/core/svg/SVGForeignObjectElement.h |
@@ -36,6 +36,7 @@ public: |
SVGAnimatedLength* y() const { return m_y.get(); } |
SVGAnimatedLength* width() const { return m_width.get(); } |
SVGAnimatedLength* height() const { return m_height.get(); } |
+ SVGAnimatedString* href() { return m_href.get(); } |
private: |
explicit SVGForeignObjectElement(Document&); |
@@ -54,8 +55,8 @@ private: |
RefPtr<SVGAnimatedLength> m_y; |
RefPtr<SVGAnimatedLength> m_width; |
RefPtr<SVGAnimatedLength> m_height; |
+ RefPtr<SVGAnimatedString> m_href; |
BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGForeignObjectElement) |
- DECLARE_ANIMATED_STRING(Href, href) |
END_DECLARE_ANIMATED_PROPERTIES |
}; |