| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 17405d29ff2673d87b5811d0a0b5d4743d4b8bd4..b118607de5d086289aada6b124fcd6c57848313d 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -33120,7 +33120,7 @@ abstract class CssClassSet implements Set<String> {
|
|
|
| Iterable<String> where(bool f(String element)) => readClasses().where(f);
|
|
|
| - Iterable expand(Iterable f(E element)) => readClasses.expand(f);
|
| + Iterable expand(Iterable f(String element)) => readClasses.expand(f);
|
|
|
| bool every(bool f(String element)) => readClasses().every(f);
|
|
|
| @@ -33128,7 +33128,7 @@ abstract class CssClassSet implements Set<String> {
|
|
|
| bool get isEmpty => readClasses().isEmpty;
|
|
|
| - int get length =>readClasses().length;
|
| + int get length => readClasses().length;
|
|
|
| dynamic reduce(dynamic initialValue,
|
| dynamic combine(dynamic previousValue, String element)) {
|
|
|