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

Unified Diff: Source/web/WebRuntimeFeatures.cpp

Issue 474013004: Experimental SVG 1.1 DOM runtime flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: UseCounter + make it possible to disable svgdom from commandline Created 6 years, 3 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/web/WebRuntimeFeatures.cpp
diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
index e8aa53f7e95d2b3bd0a56fa429a6657567a07898..8b4a4be4ba2907ac4d954331cd241ddf4675d469 100644
--- a/Source/web/WebRuntimeFeatures.cpp
+++ b/Source/web/WebRuntimeFeatures.cpp
@@ -282,4 +282,10 @@ void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable)
RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable);
}
+void WebRuntimeFeatures::enableSVG1DOM(bool enable)
+{
+ RuntimeEnabledFeatures::setSVG1DOMEnabled(enable);
+}
+
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698