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

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

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 years, 1 month 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 {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 String get innerText() { return _get__HTMLElement_innerText(this); } 62 String get innerText() { return _get__HTMLElement_innerText(this); }
63 static String _get__HTMLElement_innerText(var _this) native; 63 static String _get__HTMLElement_innerText(var _this) native;
64 64
65 void set innerText(String value) { _set__HTMLElement_innerText(this, value); } 65 void set innerText(String value) { _set__HTMLElement_innerText(this, value); }
66 static void _set__HTMLElement_innerText(var _this, String value) native; 66 static void _set__HTMLElement_innerText(var _this, String value) native;
67 67
68 bool get isContentEditable() { return _get__HTMLElement_isContentEditable(this ); } 68 bool get isContentEditable() { return _get__HTMLElement_isContentEditable(this ); }
69 static bool _get__HTMLElement_isContentEditable(var _this) native; 69 static bool _get__HTMLElement_isContentEditable(var _this) native;
70 70
71 String get itemId() { return _get__HTMLElement_itemId(this); }
72 static String _get__HTMLElement_itemId(var _this) native;
73
74 void set itemId(String value) { _set__HTMLElement_itemId(this, value); }
75 static void _set__HTMLElement_itemId(var _this, String value) native;
76
77 DOMSettableTokenList get itemProp() { return _get__HTMLElement_itemProp(this); }
78 static DOMSettableTokenList _get__HTMLElement_itemProp(var _this) native;
79
80 DOMSettableTokenList get itemRef() { return _get__HTMLElement_itemRef(this); }
81 static DOMSettableTokenList _get__HTMLElement_itemRef(var _this) native;
82
83 bool get itemScope() { return _get__HTMLElement_itemScope(this); }
84 static bool _get__HTMLElement_itemScope(var _this) native;
85
86 void set itemScope(bool value) { _set__HTMLElement_itemScope(this, value); }
87 static void _set__HTMLElement_itemScope(var _this, bool value) native;
88
89 DOMSettableTokenList get itemType() { return _get__HTMLElement_itemType(this); }
90 static DOMSettableTokenList _get__HTMLElement_itemType(var _this) native;
91
92 Object get itemValue() { return _get__HTMLElement_itemValue(this); }
93 static Object _get__HTMLElement_itemValue(var _this) native;
94
95 void set itemValue(Object value) { _set__HTMLElement_itemValue(this, value); }
96 static void _set__HTMLElement_itemValue(var _this, Object value) native;
97
71 String get lang() { return _get__HTMLElement_lang(this); } 98 String get lang() { return _get__HTMLElement_lang(this); }
72 static String _get__HTMLElement_lang(var _this) native; 99 static String _get__HTMLElement_lang(var _this) native;
73 100
74 void set lang(String value) { _set__HTMLElement_lang(this, value); } 101 void set lang(String value) { _set__HTMLElement_lang(this, value); }
75 static void _set__HTMLElement_lang(var _this, String value) native; 102 static void _set__HTMLElement_lang(var _this, String value) native;
76 103
77 String get outerHTML() { return _get__HTMLElement_outerHTML(this); } 104 String get outerHTML() { return _get__HTMLElement_outerHTML(this); }
78 static String _get__HTMLElement_outerHTML(var _this) native; 105 static String _get__HTMLElement_outerHTML(var _this) native;
79 106
80 void set outerHTML(String value) { _set__HTMLElement_outerHTML(this, value); } 107 void set outerHTML(String value) { _set__HTMLElement_outerHTML(this, value); }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 static void _insertAdjacentHTML(receiver, where, html) native; 149 static void _insertAdjacentHTML(receiver, where, html) native;
123 150
124 void insertAdjacentText(String where, String text) { 151 void insertAdjacentText(String where, String text) {
125 _insertAdjacentText(this, where, text); 152 _insertAdjacentText(this, where, text);
126 return; 153 return;
127 } 154 }
128 static void _insertAdjacentText(receiver, where, text) native; 155 static void _insertAdjacentText(receiver, where, text) native;
129 156
130 String get typeName() { return "HTMLElement"; } 157 String get typeName() { return "HTMLElement"; }
131 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698