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

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

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 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 _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement { 7 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement {
8 _HTMLElementWrappingImplementation() : super() {} 8 _HTMLElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLElementWrappingImplementation() native { 10 static create__HTMLElementWrappingImplementation() native {
11 return new _HTMLElementWrappingImplementation(); 11 return new _HTMLElementWrappingImplementation();
12 } 12 }
13 13
14 String get accessKey() { return _get_accessKey(this); }
15 static String _get_accessKey(var _this) native;
16
17 void set accessKey(String value) { _set_accessKey(this, value); }
18 static void _set_accessKey(var _this, String value) native;
19
20 HTMLCollection get children() { return _get_children(this); } 14 HTMLCollection get children() { return _get_children(this); }
21 static HTMLCollection _get_children(var _this) native; 15 static HTMLCollection _get_children(var _this) native;
22 16
23 DOMTokenList get classList() { return _get_classList(this); } 17 DOMTokenList get classList() { return _get_classList(this); }
24 static DOMTokenList _get_classList(var _this) native; 18 static DOMTokenList _get_classList(var _this) native;
25 19
26 String get className() { return _get_className(this); } 20 String get className() { return _get_className(this); }
27 static String _get_className(var _this) native; 21 static String _get_className(var _this) native;
28 22
29 void set className(String value) { _set_className(this, value); } 23 void set className(String value) { _set_className(this, value); }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 static void _insertAdjacentHTML(receiver, where, html) native; 149 static void _insertAdjacentHTML(receiver, where, html) native;
156 150
157 void insertAdjacentText(String where, String text) { 151 void insertAdjacentText(String where, String text) {
158 _insertAdjacentText(this, where, text); 152 _insertAdjacentText(this, where, text);
159 return; 153 return;
160 } 154 }
161 static void _insertAdjacentText(receiver, where, text) native; 155 static void _insertAdjacentText(receiver, where, text) native;
162 156
163 String get typeName() { return "HTMLElement"; } 157 String get typeName() { return "HTMLElement"; }
164 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698