Index: lib/dom.dart |
diff --git a/lib/dom.dart b/lib/dom.dart |
index ad6aab1e368adf8f4793d983083653bbb7f40ebf..8ba85c4a001e68131b4d306b3976f49b202b64a6 100644 |
--- a/lib/dom.dart |
+++ b/lib/dom.dart |
@@ -88,7 +88,7 @@ abstract class Node { |
* Note that attribute order needs to be stable for serialization, so we use a |
* LinkedHashMap. Each key is a [String] or [AttributeName]. |
*/ |
- LinkedHashMap<Dynamic, String> attributes = new LinkedHashMap(); |
+ LinkedHashMap<dynamic, String> attributes = new LinkedHashMap(); |
/** |
* A list of child nodes of the current node. This must |