| 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 _HTMLObjectElementWrappingImplementation extends _HTMLElementWrappingImple
mentation implements HTMLObjectElement { | 7 class _HTMLObjectElementWrappingImplementation extends _HTMLElementWrappingImple
mentation implements HTMLObjectElement { |
| 8 _HTMLObjectElementWrappingImplementation() : super() {} | 8 _HTMLObjectElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLObjectElementWrappingImplementation() native { | 10 static create__HTMLObjectElementWrappingImplementation() native { |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 static void _set_width(var _this, String value) native; | 120 static void _set_width(var _this, String value) native; |
| 121 | 121 |
| 122 bool get willValidate() { return _get_willValidate(this); } | 122 bool get willValidate() { return _get_willValidate(this); } |
| 123 static bool _get_willValidate(var _this) native; | 123 static bool _get_willValidate(var _this) native; |
| 124 | 124 |
| 125 bool checkValidity() { | 125 bool checkValidity() { |
| 126 return _checkValidity(this); | 126 return _checkValidity(this); |
| 127 } | 127 } |
| 128 static bool _checkValidity(receiver) native; | 128 static bool _checkValidity(receiver) native; |
| 129 | 129 |
| 130 SVGDocument getSVGDocument() { |
| 131 return _getSVGDocument(this); |
| 132 } |
| 133 static SVGDocument _getSVGDocument(receiver) native; |
| 134 |
| 130 void setCustomValidity(String error) { | 135 void setCustomValidity(String error) { |
| 131 _setCustomValidity(this, error); | 136 _setCustomValidity(this, error); |
| 132 return; | 137 return; |
| 133 } | 138 } |
| 134 static void _setCustomValidity(receiver, error) native; | 139 static void _setCustomValidity(receiver, error) native; |
| 135 | 140 |
| 136 String get typeName() { return "HTMLObjectElement"; } | 141 String get typeName() { return "HTMLObjectElement"; } |
| 137 } | 142 } |
| OLD | NEW |