Index: Source/core/svg/SVGAnimateColorElement.cpp |
diff --git a/Source/core/svg/SVGAnimateColorElement.cpp b/Source/core/svg/SVGAnimateColorElement.cpp |
index 7e9fd0d7fdd21ba93f049d632a84440d6ef2353a..ce8d772bba7066b086152ecbe04c8cd7ec54fc11 100644 |
--- a/Source/core/svg/SVGAnimateColorElement.cpp |
+++ b/Source/core/svg/SVGAnimateColorElement.cpp |
@@ -22,6 +22,7 @@ |
#include "config.h" |
#include "SVGNames.h" |
+#include "core/page/UseCounter.h" |
#include "core/svg/SVGAnimateColorElement.h" |
namespace WebCore { |
@@ -31,6 +32,8 @@ inline SVGAnimateColorElement::SVGAnimateColorElement(const QualifiedName& tagNa |
{ |
ASSERT(hasTagName(SVGNames::animateColorTag)); |
ScriptWrappable::init(this); |
+ |
+ UseCounter::count(&document, UseCounter::SVGAnimateColorElement); |
} |
PassRefPtr<SVGAnimateColorElement> SVGAnimateColorElement::create(const QualifiedName& tagName, Document& document) |