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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 10824326: Enable (HTML)DataListElement (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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:
Download patch
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index c5e8139c9fa260fa6f71cdc7694144c04bbe905a..5e7c417b1da851a80be3fc7e1b7a2455bcacd242 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -8831,6 +8831,17 @@ class _HTMLDListElementImpl extends _HTMLElementImpl implements DListElement {
// WARNING: Do not edit - generated code.
+class _HTMLDataListElementImpl extends _HTMLElementImpl implements DataListElement {
+
+ HTMLCollection get options() native "HTMLDataListElement_options_Getter";
+
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
class _HTMLDetailsElementImpl extends _HTMLElementImpl implements DetailsElement {
bool get open() native "HTMLDetailsElement_open_Getter";
@@ -9474,6 +9485,8 @@ class _HTMLInputElementImpl extends _HTMLElementImpl implements InputElement {
NodeList get labels() native "HTMLInputElement_labels_Getter";
+ Element get list() native "HTMLInputElement_list_Getter";
+
String get max() native "HTMLInputElement_max_Getter";
void set max(String) native "HTMLInputElement_max_Setter";
@@ -20998,6 +21011,11 @@ class _Elements {
return _e;
}
+ factory DataListElement() {
+ _HTMLDataListElementImpl _e = _document.$dom_createElement("datalist");
+ return _e;
+ }
+
factory DetailsElement() {
_HTMLDetailsElementImpl _e = _document.$dom_createElement("details");
return _e;
@@ -25786,6 +25804,20 @@ interface DOMURL default _DOMURLFactoryProvider {
// WARNING: Do not edit - generated code.
+/// @domName HTMLDataListElement
+interface DataListElement extends Element default _Elements {
+
+ DataListElement();
+
+ /** @domName HTMLDataListElement.options */
+ final HTMLCollection options;
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
/// @domName DataTransferItem
interface DataTransferItem {
@@ -28893,6 +28925,9 @@ interface InputElement extends Element default _Elements {
/** @domName HTMLInputElement.labels */
final NodeList labels;
+ /** @domName HTMLInputElement.list */
+ final Element list;
+
/** @domName HTMLInputElement.max */
String max;

Powered by Google App Engine
This is Rietveld 408576698