| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 class _HTMLIFrameElementWrappingImplementation extends _HTMLElementWrappingImple
mentation implements HTMLIFrameElement { | |
| 8 _HTMLIFrameElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__HTMLIFrameElementWrappingImplementation() native { | |
| 11 return new _HTMLIFrameElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 String get align() { return _get_align(this); } | |
| 15 static String _get_align(var _this) native; | |
| 16 | |
| 17 void set align(String value) { _set_align(this, value); } | |
| 18 static void _set_align(var _this, String value) native; | |
| 19 | |
| 20 Document get contentDocument() { return _get_contentDocument(this); } | |
| 21 static Document _get_contentDocument(var _this) native; | |
| 22 | |
| 23 DOMWindow get contentWindow() { return _get_contentWindow(this); } | |
| 24 static DOMWindow _get_contentWindow(var _this) native; | |
| 25 | |
| 26 String get frameBorder() { return _get_frameBorder(this); } | |
| 27 static String _get_frameBorder(var _this) native; | |
| 28 | |
| 29 void set frameBorder(String value) { _set_frameBorder(this, value); } | |
| 30 static void _set_frameBorder(var _this, String value) native; | |
| 31 | |
| 32 String get height() { return _get_height(this); } | |
| 33 static String _get_height(var _this) native; | |
| 34 | |
| 35 void set height(String value) { _set_height(this, value); } | |
| 36 static void _set_height(var _this, String value) native; | |
| 37 | |
| 38 String get longDesc() { return _get_longDesc(this); } | |
| 39 static String _get_longDesc(var _this) native; | |
| 40 | |
| 41 void set longDesc(String value) { _set_longDesc(this, value); } | |
| 42 static void _set_longDesc(var _this, String value) native; | |
| 43 | |
| 44 String get marginHeight() { return _get_marginHeight(this); } | |
| 45 static String _get_marginHeight(var _this) native; | |
| 46 | |
| 47 void set marginHeight(String value) { _set_marginHeight(this, value); } | |
| 48 static void _set_marginHeight(var _this, String value) native; | |
| 49 | |
| 50 String get marginWidth() { return _get_marginWidth(this); } | |
| 51 static String _get_marginWidth(var _this) native; | |
| 52 | |
| 53 void set marginWidth(String value) { _set_marginWidth(this, value); } | |
| 54 static void _set_marginWidth(var _this, String value) native; | |
| 55 | |
| 56 String get name() { return _get_name(this); } | |
| 57 static String _get_name(var _this) native; | |
| 58 | |
| 59 void set name(String value) { _set_name(this, value); } | |
| 60 static void _set_name(var _this, String value) native; | |
| 61 | |
| 62 String get sandbox() { return _get_sandbox(this); } | |
| 63 static String _get_sandbox(var _this) native; | |
| 64 | |
| 65 void set sandbox(String value) { _set_sandbox(this, value); } | |
| 66 static void _set_sandbox(var _this, String value) native; | |
| 67 | |
| 68 String get scrolling() { return _get_scrolling(this); } | |
| 69 static String _get_scrolling(var _this) native; | |
| 70 | |
| 71 void set scrolling(String value) { _set_scrolling(this, value); } | |
| 72 static void _set_scrolling(var _this, String value) native; | |
| 73 | |
| 74 String get src() { return _get_src(this); } | |
| 75 static String _get_src(var _this) native; | |
| 76 | |
| 77 void set src(String value) { _set_src(this, value); } | |
| 78 static void _set_src(var _this, String value) native; | |
| 79 | |
| 80 String get width() { return _get_width(this); } | |
| 81 static String _get_width(var _this) native; | |
| 82 | |
| 83 void set width(String value) { _set_width(this, value); } | |
| 84 static void _set_width(var _this, String value) native; | |
| 85 | |
| 86 SVGDocument getSVGDocument() { | |
| 87 return _getSVGDocument(this); | |
| 88 } | |
| 89 static SVGDocument _getSVGDocument(receiver) native; | |
| 90 | |
| 91 String get typeName() { return "HTMLIFrameElement"; } | |
| 92 } | |
| OLD | NEW |