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

Side by Side Diff: lib/html/doc/interface/SVGPathElement.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 /// @domName SVGPathElement
8 interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal ResourcesRequired, SVGStylable, SVGTransformable {
9
10 /** @domName SVGPathElement.animatedNormalizedPathSegList */
11 final SVGPathSegList animatedNormalizedPathSegList;
12
13 /** @domName SVGPathElement.animatedPathSegList */
14 final SVGPathSegList animatedPathSegList;
15
16 /** @domName SVGPathElement.normalizedPathSegList */
17 final SVGPathSegList normalizedPathSegList;
18
19 /** @domName SVGPathElement.pathLength */
20 final SVGAnimatedNumber pathLength;
21
22 /** @domName SVGPathElement.pathSegList */
23 final SVGPathSegList pathSegList;
24
25 /** @domName SVGPathElement.createSVGPathSegArcAbs */
26 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag);
27
28 /** @domName SVGPathElement.createSVGPathSegArcRel */
29 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag);
30
31 /** @domName SVGPathElement.createSVGPathSegClosePath */
32 SVGPathSegClosePath createSVGPathSegClosePath();
33
34 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */
35 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1 , num y1, num x2, num y2);
36
37 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */
38 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1 , num y1, num x2, num y2);
39
40 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */
41 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n um y, num x2, num y2);
42
43 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */
44 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n um y, num x2, num y2);
45
46 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */
47 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y , num x1, num y1);
48
49 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */
50 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y , num x1, num y1);
51
52 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */
53 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs( num x, num y);
54
55 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */
56 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel( num x, num y);
57
58 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */
59 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y);
60
61 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */
62 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x);
63
64 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */
65 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x);
66
67 /** @domName SVGPathElement.createSVGPathSegLinetoRel */
68 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y);
69
70 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */
71 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y);
72
73 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */
74 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y);
75
76 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */
77 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y);
78
79 /** @domName SVGPathElement.createSVGPathSegMovetoRel */
80 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y);
81
82 /** @domName SVGPathElement.getPathSegAtLength */
83 int getPathSegAtLength(num distance);
84
85 /** @domName SVGPathElement.getPointAtLength */
86 SVGPoint getPointAtLength(num distance);
87
88 /** @domName SVGPathElement.getTotalLength */
89 num getTotalLength();
90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698