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

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

Issue 1251983005: Flag to disable SMIL support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: animateTransform 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/SVGMPathElement.cpp
diff --git a/Source/core/svg/SVGMPathElement.cpp b/Source/core/svg/SVGMPathElement.cpp
index 6161b488ccfbfb8c0d059786eefdd69b5635fe35..c46c5a9db40bdc7bf76d2a0231ada47310eef6ec 100644
--- a/Source/core/svg/SVGMPathElement.cpp
+++ b/Source/core/svg/SVGMPathElement.cpp
@@ -33,6 +33,7 @@ inline SVGMPathElement::SVGMPathElement(Document& document)
: SVGElement(SVGNames::mpathTag, document)
, SVGURIReference(this)
{
+ ASSERT(RuntimeEnabledFeatures::sMILEnabled());
}
DEFINE_TRACE(SVGMPathElement)

Powered by Google App Engine
This is Rietveld 408576698