Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Unified Diff: lib/dom.dart

Issue 11260039: Advance html5lib to newest breaking changes in core: getKeys -> keys, etc (Closed) Base URL: git@github.com:dart-lang/html5lib.git@master
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | lib/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698