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

Unified Diff: Source/core/svg/SVGSVGElement.idl

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: haraken review Created 6 years, 10 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/SVGSVGElement.idl
diff --git a/Source/core/svg/SVGSVGElement.idl b/Source/core/svg/SVGSVGElement.idl
index 69fa16b5f3809125b9cb72348de985bc917995bd..d49391307b5aa551ec2b839becffb6c13348177e 100644
--- a/Source/core/svg/SVGSVGElement.idl
+++ b/Source/core/svg/SVGSVGElement.idl
@@ -23,7 +23,7 @@
// TODO: no css::ViewCSS available!
// TODO: no events::DocumentEvent available!
[
- // StrictTypeChecking, // FIXME: createSVGTransformFromMatrix doesn't have [StrictTypeChecking]
+ StrictTypeChecking,
] interface SVGSVGElement : SVGGraphicsElement {
readonly attribute SVGAnimatedLength x;
readonly attribute SVGAnimatedLength y;
@@ -67,7 +67,7 @@
SVGMatrix createSVGMatrix();
SVGRect createSVGRect();
SVGTransform createSVGTransform();
- SVGTransform createSVGTransformFromMatrix([Default=Undefined] optional SVGMatrix matrix);
+ SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
Element getElementById([Default=Undefined] optional DOMString elementId);
};

Powered by Google App Engine
This is Rietveld 408576698