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

Unified Diff: core/svg/SVGTransform.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/svg/SVGTitleElement.idl ('k') | core/svg/SVGTransformList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/svg/SVGTransform.idl
diff --git a/core/svg/SVGTransform.idl b/core/svg/SVGTransform.idl
index cb4c4373dab1b8ef48e249466ad8a59ba464c86b..4a6ce7257c2daa151749cb2fa99e153031140213 100644
--- a/core/svg/SVGTransform.idl
+++ b/core/svg/SVGTransform.idl
@@ -19,10 +19,16 @@
* Boston, MA 02110-1301, USA.
*/
+// http://www.w3.org/TR/SVG2/coords.html#InterfaceSVGTransform
+
+// TODO(philipj): SVGTransform should have constructors. crbug.com/366541
[
- TypeChecking=Interface,
ImplementedAs=SVGTransformTearOff,
+ MeasureAs=SVG1DOM,
+ RuntimeEnabled=SVG1DOM,
SetWrapperReferenceTo(SVGElement contextElement),
+ TypeChecking=Interface,
+ WillBeGarbageCollected,
] interface SVGTransform {
// Transform Types
const unsigned short SVG_TRANSFORM_UNKNOWN = 0;
@@ -34,6 +40,7 @@
const unsigned short SVG_TRANSFORM_SKEWY = 6;
[ImplementedAs=transformType] readonly attribute unsigned short type;
+ // TODO(philipj): SVGMatrix should be DOMMatrixReadOnly.
readonly attribute SVGMatrix matrix;
readonly attribute float angle;
@@ -44,4 +51,3 @@
[RaisesException] void setSkewX(float angle);
[RaisesException] void setSkewY(float angle);
};
-
« no previous file with comments | « core/svg/SVGTitleElement.idl ('k') | core/svg/SVGTransformList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698