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

Side by Side Diff: client/html/generated/html/dartium/SVGMarkerElement.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 _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement {
3 _SVGMarkerElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 SVGAnimatedLength get markerHeight() => _wrap(_ptr.markerHeight);
6
7 SVGAnimatedEnumeration get markerUnits() => _wrap(_ptr.markerUnits);
8
9 SVGAnimatedLength get markerWidth() => _wrap(_ptr.markerWidth);
10
11 SVGAnimatedAngle get orientAngle() => _wrap(_ptr.orientAngle);
12
13 SVGAnimatedEnumeration get orientType() => _wrap(_ptr.orientType);
14
15 SVGAnimatedLength get refX() => _wrap(_ptr.refX);
16
17 SVGAnimatedLength get refY() => _wrap(_ptr.refY);
18
19 void setOrientToAngle(SVGAngle angle) {
20 _ptr.setOrientToAngle(_unwrap(angle));
21 return;
22 }
23
24 void setOrientToAuto() {
25 _ptr.setOrientToAuto();
26 return;
27 }
28
29 // From SVGLangSpace
30
31 String get xmllang() => _wrap(_ptr.xmllang);
32
33 void set xmllang(String value) { _ptr.xmllang = _unwrap(value); }
34
35 String get xmlspace() => _wrap(_ptr.xmlspace);
36
37 void set xmlspace(String value) { _ptr.xmlspace = _unwrap(value); }
38
39 // From SVGExternalResourcesRequired
40
41 SVGAnimatedBoolean get externalResourcesRequired() => _wrap(_ptr.externalResou rcesRequired);
42
43 // From SVGStylable
44
45 SVGAnimatedString get _className() => _wrap(_ptr.className);
46
47 CSSStyleDeclaration get style() => _wrap(_ptr.style);
48
49 CSSValue getPresentationAttribute(String name) {
50 return _wrap(_ptr.getPresentationAttribute(_unwrap(name)));
51 }
52
53 // From SVGFitToViewBox
54
55 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() => _wrap(_ptr.preserv eAspectRatio);
56
57 SVGAnimatedRect get viewBox() => _wrap(_ptr.viewBox);
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698