Chromium Code Reviews| Index: lib/dom/dom.dart |
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart |
| index fb73853f1086bcebfdde2297c0938e3c0b75e35f..9ac87f17cfea2358849e0c8e55c634c9026e808a 100644 |
| --- a/lib/dom/dom.dart |
| +++ b/lib/dom/dom.dart |
| @@ -3511,6 +3511,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; |
| @@ -3971,6 +3981,8 @@ interface HTMLInputElement extends HTMLElement { |
| final NodeList labels; |
| + final HTMLElement list; |
|
Emily Fortuna
2012/08/16 17:45:05
Just to be sure -- we want this to be HTMLElement
sra1
2012/08/16 18:49:54
This file, 'dom.dart', is what remains of the stra
|
| + |
| String max; |
| int maxLength; |