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

Unified Diff: lib/dom/dart2js/dom_dart2js.dart

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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | lib/dom/dom.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dart2js/dom_dart2js.dart
diff --git a/lib/dom/dart2js/dom_dart2js.dart b/lib/dom/dart2js/dom_dart2js.dart
index 4dac982da3a0ad749e50ed8e6bf6e2bc5a2bac89..0ff64956d5d7c01649e168865da1677ef898e362 100644
--- a/lib/dom/dart2js/dom_dart2js.dart
+++ b/lib/dom/dart2js/dom_dart2js.dart
@@ -2925,6 +2925,11 @@ class _HTMLDListElementJs extends _HTMLElementJs implements HTMLDListElement nat
bool compact;
}
+class _HTMLDataListElementJs extends _HTMLElementJs implements HTMLDataListElement native "*HTMLDataListElement" {
+
+ final _HTMLCollectionJs options;
+}
+
class _HTMLDetailsElementJs extends _HTMLElementJs implements HTMLDetailsElement native "*HTMLDetailsElement" {
bool open;
@@ -3308,6 +3313,8 @@ class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
final _NodeListJs labels;
+ final _HTMLElementJs list;
+
String max;
int maxLength;
@@ -15574,6 +15581,16 @@ interface HTMLDListElement extends HTMLElement {
// WARNING: Do not edit - generated code.
+interface HTMLDataListElement extends HTMLElement {
+
+ 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.
+
interface HTMLDetailsElement extends HTMLElement {
bool open;
@@ -16034,6 +16051,8 @@ interface HTMLInputElement extends HTMLElement {
final NodeList labels;
+ final HTMLElement list;
+
String max;
int maxLength;
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | lib/dom/dom.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698