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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
index 9e32bd819739cca2c7db6819aa77b81eb2a53e94..c54262d46d2ef4f89c1904115f70d979e4c51a61 100644
--- a/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
@@ -68,6 +68,33 @@ class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation
bool get isContentEditable() { return _get__HTMLElement_isContentEditable(this); }
static bool _get__HTMLElement_isContentEditable(var _this) native;
+ String get itemId() { return _get__HTMLElement_itemId(this); }
+ static String _get__HTMLElement_itemId(var _this) native;
+
+ void set itemId(String value) { _set__HTMLElement_itemId(this, value); }
+ static void _set__HTMLElement_itemId(var _this, String value) native;
+
+ DOMSettableTokenList get itemProp() { return _get__HTMLElement_itemProp(this); }
+ static DOMSettableTokenList _get__HTMLElement_itemProp(var _this) native;
+
+ DOMSettableTokenList get itemRef() { return _get__HTMLElement_itemRef(this); }
+ static DOMSettableTokenList _get__HTMLElement_itemRef(var _this) native;
+
+ bool get itemScope() { return _get__HTMLElement_itemScope(this); }
+ static bool _get__HTMLElement_itemScope(var _this) native;
+
+ void set itemScope(bool value) { _set__HTMLElement_itemScope(this, value); }
+ static void _set__HTMLElement_itemScope(var _this, bool value) native;
+
+ DOMSettableTokenList get itemType() { return _get__HTMLElement_itemType(this); }
+ static DOMSettableTokenList _get__HTMLElement_itemType(var _this) native;
+
+ Object get itemValue() { return _get__HTMLElement_itemValue(this); }
+ static Object _get__HTMLElement_itemValue(var _this) native;
+
+ void set itemValue(Object value) { _set__HTMLElement_itemValue(this, value); }
+ static void _set__HTMLElement_itemValue(var _this, Object value) native;
+
String get lang() { return _get__HTMLElement_lang(this); }
static String _get__HTMLElement_lang(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698