| Index: client/html/dartium/html_dartium.dart
|
| diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
|
| index 3a3368f0da674824f3a86d0835f51a7496986556..a80d47b78743e766189421957587154f2bce9ed9 100644
|
| --- a/client/html/dartium/html_dartium.dart
|
| +++ b/client/html/dartium/html_dartium.dart
|
| @@ -25699,14 +25699,12 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
|
| */
|
| ElementList get elements();
|
|
|
| - // TODO: The type of value should be Collection<Element>. See http://b/5392897
|
| - void set elements(value);
|
| + void set elements(Collection<Element> value);
|
|
|
| /** @domName className, classList */
|
| Set<String> get classes();
|
|
|
| - // TODO: The type of value should be Collection<String>. See http://b/5392897
|
| - void set classes(value);
|
| + void set classes(Collection<String> value);
|
|
|
| Map<String, String> get dataAttributes();
|
| void set dataAttributes(Map<String, String> value);
|
| @@ -28492,8 +28490,7 @@ typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream);
|
| interface Node extends EventTarget {
|
| NodeList get nodes();
|
|
|
| - // TODO: The type of value should be Collection<Node>. See http://b/5392897
|
| - void set nodes(value);
|
| + void set nodes(Collection<Node> value);
|
|
|
| Node replaceWith(Node otherNode);
|
|
|
|
|