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

Unified Diff: client/html/generated/html/dartium/ImageElement.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, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/ImageElement.dart
diff --git a/client/html/generated/html/dartium/ImageElement.dart b/client/html/generated/html/dartium/ImageElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4a9835a6789e80ca2f4720c1067beb8bbe9325e2
--- /dev/null
+++ b/client/html/generated/html/dartium/ImageElement.dart
@@ -0,0 +1,70 @@
+
+class _ImageElementImpl extends _ElementImpl implements ImageElement {
+ _ImageElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get align() => _wrap(_ptr.align);
+
+ void set align(String value) { _ptr.align = _unwrap(value); }
+
+ String get alt() => _wrap(_ptr.alt);
+
+ void set alt(String value) { _ptr.alt = _unwrap(value); }
+
+ String get border() => _wrap(_ptr.border);
+
+ void set border(String value) { _ptr.border = _unwrap(value); }
+
+ bool get complete() => _wrap(_ptr.complete);
+
+ String get crossOrigin() => _wrap(_ptr.crossOrigin);
+
+ void set crossOrigin(String value) { _ptr.crossOrigin = _unwrap(value); }
+
+ int get height() => _wrap(_ptr.height);
+
+ void set height(int value) { _ptr.height = _unwrap(value); }
+
+ int get hspace() => _wrap(_ptr.hspace);
+
+ void set hspace(int value) { _ptr.hspace = _unwrap(value); }
+
+ bool get isMap() => _wrap(_ptr.isMap);
+
+ void set isMap(bool value) { _ptr.isMap = _unwrap(value); }
+
+ String get longDesc() => _wrap(_ptr.longDesc);
+
+ void set longDesc(String value) { _ptr.longDesc = _unwrap(value); }
+
+ String get lowsrc() => _wrap(_ptr.lowsrc);
+
+ void set lowsrc(String value) { _ptr.lowsrc = _unwrap(value); }
+
+ String get name() => _wrap(_ptr.name);
+
+ void set name(String value) { _ptr.name = _unwrap(value); }
+
+ int get naturalHeight() => _wrap(_ptr.naturalHeight);
+
+ int get naturalWidth() => _wrap(_ptr.naturalWidth);
+
+ String get src() => _wrap(_ptr.src);
+
+ void set src(String value) { _ptr.src = _unwrap(value); }
+
+ String get useMap() => _wrap(_ptr.useMap);
+
+ void set useMap(String value) { _ptr.useMap = _unwrap(value); }
+
+ int get vspace() => _wrap(_ptr.vspace);
+
+ void set vspace(int value) { _ptr.vspace = _unwrap(value); }
+
+ int get width() => _wrap(_ptr.width);
+
+ void set width(int value) { _ptr.width = _unwrap(value); }
+
+ int get x() => _wrap(_ptr.x);
+
+ int get y() => _wrap(_ptr.y);
+}

Powered by Google App Engine
This is Rietveld 408576698