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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLObjectElementWrappingImplementation.dart

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698