| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementatio
n implements HTMLDocument { | 7 class _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementatio
n implements HTMLDocument { |
| 8 _HTMLDocumentWrappingImplementation() : super() {} | 8 _HTMLDocumentWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLDocumentWrappingImplementation() native { | 10 static create__HTMLDocumentWrappingImplementation() native { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 HTMLCollection get embeds() { return _get_embeds(this); } | 50 HTMLCollection get embeds() { return _get_embeds(this); } |
| 51 static HTMLCollection _get_embeds(var _this) native; | 51 static HTMLCollection _get_embeds(var _this) native; |
| 52 | 52 |
| 53 String get fgColor() { return _get_fgColor(this); } | 53 String get fgColor() { return _get_fgColor(this); } |
| 54 static String _get_fgColor(var _this) native; | 54 static String _get_fgColor(var _this) native; |
| 55 | 55 |
| 56 void set fgColor(String value) { _set_fgColor(this, value); } | 56 void set fgColor(String value) { _set_fgColor(this, value); } |
| 57 static void _set_fgColor(var _this, String value) native; | 57 static void _set_fgColor(var _this, String value) native; |
| 58 | 58 |
| 59 int get height() { return _get_height(this); } | |
| 60 static int _get_height(var _this) native; | |
| 61 | |
| 62 String get linkColor() { return _get_linkColor(this); } | 59 String get linkColor() { return _get_linkColor(this); } |
| 63 static String _get_linkColor(var _this) native; | 60 static String _get_linkColor(var _this) native; |
| 64 | 61 |
| 65 void set linkColor(String value) { _set_linkColor(this, value); } | 62 void set linkColor(String value) { _set_linkColor(this, value); } |
| 66 static void _set_linkColor(var _this, String value) native; | 63 static void _set_linkColor(var _this, String value) native; |
| 67 | 64 |
| 68 HTMLCollection get plugins() { return _get_plugins(this); } | 65 HTMLCollection get plugins() { return _get_plugins(this); } |
| 69 static HTMLCollection _get_plugins(var _this) native; | 66 static HTMLCollection _get_plugins(var _this) native; |
| 70 | 67 |
| 71 HTMLCollection get scripts() { return _get_scripts(this); } | 68 HTMLCollection get scripts() { return _get_scripts(this); } |
| 72 static HTMLCollection _get_scripts(var _this) native; | 69 static HTMLCollection _get_scripts(var _this) native; |
| 73 | 70 |
| 74 String get vlinkColor() { return _get_vlinkColor(this); } | 71 String get vlinkColor() { return _get_vlinkColor(this); } |
| 75 static String _get_vlinkColor(var _this) native; | 72 static String _get_vlinkColor(var _this) native; |
| 76 | 73 |
| 77 void set vlinkColor(String value) { _set_vlinkColor(this, value); } | 74 void set vlinkColor(String value) { _set_vlinkColor(this, value); } |
| 78 static void _set_vlinkColor(var _this, String value) native; | 75 static void _set_vlinkColor(var _this, String value) native; |
| 79 | 76 |
| 80 int get width() { return _get_width(this); } | |
| 81 static int _get_width(var _this) native; | |
| 82 | |
| 83 void captureEvents() { | 77 void captureEvents() { |
| 84 _captureEvents(this); | 78 _captureEvents(this); |
| 85 return; | 79 return; |
| 86 } | 80 } |
| 87 static void _captureEvents(receiver) native; | 81 static void _captureEvents(receiver) native; |
| 88 | 82 |
| 89 void clear() { | 83 void clear() { |
| 90 _clear(this); | 84 _clear(this); |
| 91 return; | 85 return; |
| 92 } | 86 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 122 static void _write(receiver, text) native; | 116 static void _write(receiver, text) native; |
| 123 | 117 |
| 124 void writeln(String text) { | 118 void writeln(String text) { |
| 125 _writeln(this, text); | 119 _writeln(this, text); |
| 126 return; | 120 return; |
| 127 } | 121 } |
| 128 static void _writeln(receiver, text) native; | 122 static void _writeln(receiver, text) native; |
| 129 | 123 |
| 130 String get typeName() { return "HTMLDocument"; } | 124 String get typeName() { return "HTMLDocument"; } |
| 131 } | 125 } |
| OLD | NEW |