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 654d0b7fb249cd5e25d0045f6a6e05f6be74f4b6..cad661e7b0ae1dc01b37036b1d9e043a4b98676d 100644 |
--- a/sdk/lib/html/html_common/filtered_element_list.dart |
+++ b/sdk/lib/html/html_common/filtered_element_list.dart |
@@ -80,10 +80,6 @@ class FilteredElementList extends ListBase<Element> { |
_filtered.sublist(start, end).forEach((el) => el.remove()); |
} |
- void insertRange(int start, int rangeLength, [initialValue = null]) { |
- throw new UnimplementedError(); |
- } |
- |
void clear() { |
// Currently, ElementList#clear clears even non-element nodes, so we follow |
// that behavior. |