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

Unified Diff: client/dom/generated/src/frog/SVGPathElement.dart

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | « client/dom/generated/src/frog/SVGPaint.dart ('k') | client/dom/generated/src/frog/SVGPathSeg.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/SVGPathElement.dart
diff --git a/client/dom/generated/src/frog/SVGPathElement.dart b/client/dom/generated/src/frog/SVGPathElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..856cdfc2eb47c85ac6a5c4ca05793a047584db42
--- /dev/null
+++ b/client/dom/generated/src/frog/SVGPathElement.dart
@@ -0,0 +1,103 @@
+
+class SVGPathElement extends SVGElement native "SVGPathElement" {
+
+ SVGPathSegList animatedNormalizedPathSegList;
+
+ SVGPathSegList animatedPathSegList;
+
+ SVGPathSegList normalizedPathSegList;
+
+ SVGAnimatedNumber pathLength;
+
+ SVGPathSegList pathSegList;
+
+ SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native;
+
+ SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native;
+
+ SVGPathSegClosePath createSVGPathSegClosePath() native;
+
+ SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) native;
+
+ SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) native;
+
+ SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native;
+
+ SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native;
+
+ SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) native;
+
+ SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) native;
+
+ SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(num x, num y) native;
+
+ SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(num x, num y) native;
+
+ SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native;
+
+ SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) native;
+
+ SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) native;
+
+ SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native;
+
+ SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native;
+
+ SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native;
+
+ SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native;
+
+ SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native;
+
+ int getPathSegAtLength(num distance) native;
+
+ SVGPoint getPointAtLength(num distance) native;
+
+ num getTotalLength() native;
+
+ // From SVGTests
+
+ SVGStringList requiredExtensions;
+
+ SVGStringList requiredFeatures;
+
+ SVGStringList systemLanguage;
+
+ bool hasExtension(String extension) native;
+
+ // From SVGLangSpace
+
+ String xmllang;
+
+ String xmlspace;
+
+ // From SVGExternalResourcesRequired
+
+ SVGAnimatedBoolean externalResourcesRequired;
+
+ // From SVGStylable
+
+ SVGAnimatedString className;
+
+ CSSStyleDeclaration style;
+
+ CSSValue getPresentationAttribute(String name) native;
+
+ // From SVGTransformable
+
+ SVGAnimatedTransformList transform;
+
+ // From SVGLocatable
+
+ SVGElement farthestViewportElement;
+
+ SVGElement nearestViewportElement;
+
+ SVGRect getBBox() native;
+
+ SVGMatrix getCTM() native;
+
+ SVGMatrix getScreenCTM() native;
+
+ SVGMatrix getTransformToElement(SVGElement element) native;
+}
« no previous file with comments | « client/dom/generated/src/frog/SVGPaint.dart ('k') | client/dom/generated/src/frog/SVGPathSeg.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698