| Index: sdk/lib/html/html_common/filtered_element_list.dart
|
| diff --git a/sdk/lib/html/html_common/filtered_element_list.dart b/sdk/lib/html/html_common/filtered_element_list.dart
|
| index 2414539ffc3befa7af0b01837e9a2b8a8baf4c83..c05075e0c6cba3a06e46b6067764a9b9fd27c2cc 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -69,8 +69,7 @@ class FilteredElementList implements List {
|
| return element is Element && _childNodes.contains(element);
|
| }
|
|
|
| - List<Element> get reversed =>
|
| - new ReversedListView<Element>(_filtered, 0, null);
|
| + List<Element> get reversed => _filtered.reversed;
|
|
|
| void sort([int compare(Element a, Element b)]) {
|
| throw new UnsupportedError('TODO(jacobr): should we impl?');
|
|
|