Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/Source/core/svg/SVGURIReference.cpp

Issue 2618323002: Block animation of the SVGScriptElement (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGURIReference.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGURIReference.cpp b/third_party/WebKit/Source/core/svg/SVGURIReference.cpp
index 1b64614fdfd42dfe5c7936857ad187ecd3afba03..29064cfd7a9755d6ba01ec207e345e981ef3c751 100644
--- a/third_party/WebKit/Source/core/svg/SVGURIReference.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGURIReference.cpp
@@ -27,10 +27,12 @@
namespace blink {
-SVGURIReference::SVGURIReference(SVGElement* element)
+SVGURIReference::SVGURIReference(SVGElement* element,
+ PropertyMapAddition propertyMapAddition)
: m_href(SVGAnimatedHref::create(element)) {
ASSERT(element);
- m_href->addToPropertyMap(element);
+ if (propertyMapAddition == AddToPropertyMap)
+ m_href->addToPropertyMap(element);
}
DEFINE_TRACE(SVGURIReference) {

Powered by Google App Engine
This is Rietveld 408576698