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

Unified Diff: client/html/generated/html/dartium/IFrameElement.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/IFrameElement.dart
diff --git a/client/html/generated/html/dartium/IFrameElement.dart b/client/html/generated/html/dartium/IFrameElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..514104ff254eafc6b17028035799cdaa2d5d27e5
--- /dev/null
+++ b/client/html/generated/html/dartium/IFrameElement.dart
@@ -0,0 +1,56 @@
+
+class _IFrameElementImpl extends _ElementImpl implements IFrameElement {
+ _IFrameElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get align() => _wrap(_ptr.align);
+
+ void set align(String value) { _ptr.align = _unwrap(value); }
+
+ Document get contentDocument() => _FixHtmlDocumentReference(_wrap(_ptr.contentDocument));
+
+ Window get contentWindow() => _wrap(_ptr.contentWindow);
+
+ String get frameBorder() => _wrap(_ptr.frameBorder);
+
+ void set frameBorder(String value) { _ptr.frameBorder = _unwrap(value); }
+
+ String get height() => _wrap(_ptr.height);
+
+ void set height(String value) { _ptr.height = _unwrap(value); }
+
+ String get longDesc() => _wrap(_ptr.longDesc);
+
+ void set longDesc(String value) { _ptr.longDesc = _unwrap(value); }
+
+ String get marginHeight() => _wrap(_ptr.marginHeight);
+
+ void set marginHeight(String value) { _ptr.marginHeight = _unwrap(value); }
+
+ String get marginWidth() => _wrap(_ptr.marginWidth);
+
+ void set marginWidth(String value) { _ptr.marginWidth = _unwrap(value); }
+
+ String get name() => _wrap(_ptr.name);
+
+ void set name(String value) { _ptr.name = _unwrap(value); }
+
+ String get sandbox() => _wrap(_ptr.sandbox);
+
+ void set sandbox(String value) { _ptr.sandbox = _unwrap(value); }
+
+ String get scrolling() => _wrap(_ptr.scrolling);
+
+ void set scrolling(String value) { _ptr.scrolling = _unwrap(value); }
+
+ String get src() => _wrap(_ptr.src);
+
+ void set src(String value) { _ptr.src = _unwrap(value); }
+
+ String get width() => _wrap(_ptr.width);
+
+ void set width(String value) { _ptr.width = _unwrap(value); }
+
+ SVGDocument getSVGDocument() {
+ return _wrap(_ptr.getSVGDocument());
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698