| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index b5ccd3b5887a3008c7ccf2a2b0019539f060642e..28440cd09d13d641a601cf13d38c838c27869752 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -1678,6 +1678,20 @@ interface DOMSettableTokenList extends DOMTokenList {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +interface DOMStringList extends List<String> {
|
| +
|
| + final int length;
|
| +
|
| + bool contains(String string);
|
| +
|
| + String item(int index);
|
| +}
|
| +// 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 DOMTokenList {
|
|
|
| final int length;
|
|
|