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

Side by Side Diff: client/dom/generated/src/frog/SVGSVGElement.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class SVGSVGElement extends SVGElement native "SVGSVGElement" {
3
4 String contentScriptType;
5
6 String contentStyleType;
7
8 num currentScale;
9
10 SVGPoint currentTranslate;
11
12 SVGAnimatedLength height;
13
14 num pixelUnitToMillimeterX;
15
16 num pixelUnitToMillimeterY;
17
18 num screenPixelToMillimeterX;
19
20 num screenPixelToMillimeterY;
21
22 bool useCurrentView;
23
24 SVGRect viewport;
25
26 SVGAnimatedLength width;
27
28 SVGAnimatedLength x;
29
30 SVGAnimatedLength y;
31
32 bool animationsPaused() native;
33
34 bool checkEnclosure(SVGElement element, SVGRect rect) native;
35
36 bool checkIntersection(SVGElement element, SVGRect rect) native;
37
38 SVGAngle createSVGAngle() native;
39
40 SVGLength createSVGLength() native;
41
42 SVGMatrix createSVGMatrix() native;
43
44 SVGNumber createSVGNumber() native;
45
46 SVGPoint createSVGPoint() native;
47
48 SVGRect createSVGRect() native;
49
50 SVGTransform createSVGTransform() native;
51
52 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native;
53
54 void deselectAll() native;
55
56 void forceRedraw() native;
57
58 num getCurrentTime() native;
59
60 Element getElementById(String elementId) native;
61
62 NodeList getEnclosureList(SVGRect rect, SVGElement referenceElement) native;
63
64 NodeList getIntersectionList(SVGRect rect, SVGElement referenceElement) native ;
65
66 void pauseAnimations() native;
67
68 void setCurrentTime(num seconds) native;
69
70 int suspendRedraw(int maxWaitMilliseconds) native;
71
72 void unpauseAnimations() native;
73
74 void unsuspendRedraw(int suspendHandleId) native;
75
76 void unsuspendRedrawAll() native;
77
78 // From SVGTests
79
80 SVGStringList requiredExtensions;
81
82 SVGStringList requiredFeatures;
83
84 SVGStringList systemLanguage;
85
86 bool hasExtension(String extension) native;
87
88 // From SVGLangSpace
89
90 String xmllang;
91
92 String xmlspace;
93
94 // From SVGExternalResourcesRequired
95
96 SVGAnimatedBoolean externalResourcesRequired;
97
98 // From SVGStylable
99
100 SVGAnimatedString className;
101
102 CSSStyleDeclaration style;
103
104 CSSValue getPresentationAttribute(String name) native;
105
106 // From SVGLocatable
107
108 SVGElement farthestViewportElement;
109
110 SVGElement nearestViewportElement;
111
112 SVGRect getBBox() native;
113
114 SVGMatrix getCTM() native;
115
116 SVGMatrix getScreenCTM() native;
117
118 SVGMatrix getTransformToElement(SVGElement element) native;
119
120 // From SVGFitToViewBox
121
122 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
123
124 SVGAnimatedRect viewBox;
125
126 // From SVGZoomAndPan
127
128 int zoomAndPan;
129 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGRenderingIntent.dart ('k') | client/dom/generated/src/frog/SVGScriptElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698