| 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;
|
|
|