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

Unified Diff: Source/core/svg/SVGAnimationElement.cpp

Issue 1251983005: Flag to disable SMIL support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: smil not sMIL Created 5 years, 5 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: Source/core/svg/SVGAnimationElement.cpp
diff --git a/Source/core/svg/SVGAnimationElement.cpp b/Source/core/svg/SVGAnimationElement.cpp
index ae647a9033ccdadfa0c0ae3f296087e838398711..1e361e4345a9b1236378c80116fe868ce73e7009 100644
--- a/Source/core/svg/SVGAnimationElement.cpp
+++ b/Source/core/svg/SVGAnimationElement.cpp
@@ -49,6 +49,7 @@ SVGAnimationElement::SVGAnimationElement(const QualifiedName& tagName, Document&
, m_calcMode(CalcModeLinear)
, m_animationMode(NoAnimation)
{
+ ASSERT(RuntimeEnabledFeatures::smilEnabled());
UseCounter::count(document, UseCounter::SVGAnimationElement);
}

Powered by Google App Engine
This is Rietveld 408576698