Index: client/html/src/XMLDocumentWrappingImplementation.dart |
diff --git a/client/html/src/XMLDocumentWrappingImplementation.dart b/client/html/src/XMLDocumentWrappingImplementation.dart |
index 64d0c1c2e4969b598069f15234307260833ecbf0..6d8c26482f505979ba6969f181b68dba10f2e72e 100644 |
--- a/client/html/src/XMLDocumentWrappingImplementation.dart |
+++ b/client/html/src/XMLDocumentWrappingImplementation.dart |
@@ -117,8 +117,7 @@ class XMLDocumentWrappingImplementation extends DocumentWrappingImplementation |
ElementList get elements() => documentEl.elements; |
- // TODO: The type of value should be Collection<Element>. See http://b/5392897 |
- void set elements(value) { documentEl.elements = value; } |
+ void set elements(Collection<Element> value) { documentEl.elements = value; } |
String get outerHTML() => documentEl.outerHTML; |