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

Side by Side Diff: client/html/generated/html/frog/SVGSVGElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
2 class _SVGSVGElementImpl extends _SVGElementImpl implements SVGSVGElement native "*SVGSVGElement" {
3
4 String contentScriptType;
5
6 String contentStyleType;
7
8 num currentScale;
9
10 final _SVGPointImpl currentTranslate;
11
12 final _SVGAnimatedLengthImpl height;
13
14 final num pixelUnitToMillimeterX;
15
16 final num pixelUnitToMillimeterY;
17
18 final num screenPixelToMillimeterX;
19
20 final num screenPixelToMillimeterY;
21
22 bool useCurrentView;
23
24 final _SVGRectImpl viewport;
25
26 final _SVGAnimatedLengthImpl width;
27
28 final _SVGAnimatedLengthImpl x;
29
30 final _SVGAnimatedLengthImpl y;
31
32 bool animationsPaused() native;
33
34 bool checkEnclosure(_SVGElementImpl element, _SVGRectImpl rect) native;
35
36 bool checkIntersection(_SVGElementImpl element, _SVGRectImpl rect) native;
37
38 _SVGAngleImpl createSVGAngle() native;
39
40 _SVGLengthImpl createSVGLength() native;
41
42 _SVGMatrixImpl createSVGMatrix() native;
43
44 _SVGNumberImpl createSVGNumber() native;
45
46 _SVGPointImpl createSVGPoint() native;
47
48 _SVGRectImpl createSVGRect() native;
49
50 _SVGTransformImpl createSVGTransform() native;
51
52 _SVGTransformImpl createSVGTransformFromMatrix(_SVGMatrixImpl matrix) native;
53
54 void deselectAll() native;
55
56 void forceRedraw() native;
57
58 num getCurrentTime() native;
59
60 _ElementImpl getElementById(String elementId) native;
61
62 _NodeListImpl getEnclosureList(_SVGRectImpl rect, _SVGElementImpl referenceEle ment) native;
63
64 _NodeListImpl getIntersectionList(_SVGRectImpl rect, _SVGElementImpl reference Element) 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 final _SVGStringListImpl requiredExtensions;
81
82 final _SVGStringListImpl requiredFeatures;
83
84 final _SVGStringListImpl 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 final _SVGAnimatedBooleanImpl externalResourcesRequired;
97
98 // From SVGStylable
99
100 _SVGAnimatedStringImpl get _className() native "return this.className;";
101
102 // Use implementation from Element.
103 // final _CSSStyleDeclarationImpl style;
104
105 _CSSValueImpl getPresentationAttribute(String name) native;
106
107 // From SVGLocatable
108
109 final _SVGElementImpl farthestViewportElement;
110
111 final _SVGElementImpl nearestViewportElement;
112
113 _SVGRectImpl getBBox() native;
114
115 _SVGMatrixImpl getCTM() native;
116
117 _SVGMatrixImpl getScreenCTM() native;
118
119 _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native;
120
121 // From SVGFitToViewBox
122
123 final _SVGAnimatedPreserveAspectRatioImpl preserveAspectRatio;
124
125 final _SVGAnimatedRectImpl viewBox;
126
127 // From SVGZoomAndPan
128
129 int zoomAndPan;
130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698